|
Last change
on this file since 3674 was
3365,
checked in by bensch, 21 years ago
|
|
orxonox/trunk: merged branches/parenting back to the.
merged with command:
svn merge branches/parenting trunk -r 3247:HEAD
resolved all conflicts in favor of parenting.
|
|
File size:
376 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 _BASE_OBJECT_H |
|---|
| 8 | #define _BASE_OBJECT_H |
|---|
| 9 | |
|---|
| 10 | #include "stdincl.h" |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | class BaseObject { |
|---|
| 14 | |
|---|
| 15 | public: |
|---|
| 16 | BaseObject (); |
|---|
| 17 | ~BaseObject (); |
|---|
| 18 | |
|---|
| 19 | void setClassName (char* className); |
|---|
| 20 | bool isA (char* className); |
|---|
| 21 | |
|---|
| 22 | private: |
|---|
| 23 | char* className; |
|---|
| 24 | |
|---|
| 25 | }; |
|---|
| 26 | |
|---|
| 27 | #endif /* _BASE_OBJECT_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.