File: %24Base%20File%20Name%24.h

package info (click to toggle)
monkeystudio 1.9.0.4%2Bgit20161218-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,500 kB
  • ctags: 22,118
  • sloc: cpp: 144,671; ansic: 33,969; python: 2,922; makefile: 127; sh: 122; php: 73; cs: 69
file content (18 lines) | stat: -rw-r--r-- 532 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef $Base File Name.upper$_H
#define $Base File Name.upper$_H

class $Class Name$
{
public:
    $Class Name$();
    virtual ~$Class Name$();

    /*** For dynamic memory management (can be removed if it isn't necessary) ***/
    $Class Name$( const $Class Name$& other );
    $Class Name$& operator=( const $Class Name$& other );
    bool operator==( const $Class Name$& other ) const;
    bool operator!=( const $Class Name$& other ) const;
    /*** End of dynamic memory management ***/
};

#endif // $Base File Name.upper$_H