|
Last change
on this file since 3310 was
3246,
checked in by patrick, 21 years ago
|
|
orxonox/trunk: implemented a first header file for the Parent Node, still in hard-code development
|
|
File size:
491 bytes
|
| Line | |
|---|
| 1 | /*! |
|---|
| 2 | \file proto_class.h |
|---|
| 3 | \brief Definition of the proto class template, used quickly start work |
|---|
| 4 | */ |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | #ifndef _PROTO_CLASS_H |
|---|
| 8 | #define _PROTO_CLASS_H |
|---|
| 9 | |
|---|
| 10 | #include "stdincl.h" |
|---|
| 11 | |
|---|
| 12 | /*class Test;*/ /* forward definition of class Test (without including it here!)*/ |
|---|
| 13 | |
|---|
| 14 | class ProtoClass { |
|---|
| 15 | |
|---|
| 16 | public: |
|---|
| 17 | ProtoClass (); |
|---|
| 18 | ~ProtoClass (); |
|---|
| 19 | |
|---|
| 20 | bool doNonSense (int nothing); |
|---|
| 21 | |
|---|
| 22 | private: |
|---|
| 23 | int nonSense; //! doxygen tag here like this - delete this variable if you use this |
|---|
| 24 | |
|---|
| 25 | }; |
|---|
| 26 | |
|---|
| 27 | #endif /* _PROTO_CLASS_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.