repo.or.cz
/
NALCG.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Final AI tweaks.
[NALCG.git]
/
tools
/
new_class.h.template
blob
a28d1e874e6131536f78f8265015627a99c23722
1
#ifndef _##GPROJECT###GCLASS_NAME#_H_
2
#define _##GPROJECT###GCLASS_NAME#_H_
3
4
// system includes
5
6
// class includes
7
8
class ##CLASS_NAME#
9
{
10
// Constants
11
12
// Members
13
14
// Methods
15
16
public:
17
##CLASS_NAME#();
18
virtual ~##CLASS_NAME#() { }
19
20
// Methods
21
22
// Getters
23
24
// Setters
25
};
26
27
#endif // _##GPROJECT###GCLASS_NAME#_H_