|
Last change
on this file since 3419 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:
477 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 _NULL_PARENT_H |
|---|
| 8 | #define _NULL_PARENT_H |
|---|
| 9 | |
|---|
| 10 | #include "stdincl.h" |
|---|
| 11 | #include "p_node.h" |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | class NullParent : public PNode { |
|---|
| 15 | |
|---|
| 16 | public: |
|---|
| 17 | static NullParent* getInstance (); |
|---|
| 18 | ~NullParent (); |
|---|
| 19 | |
|---|
| 20 | static NullParent* singletonRef; |
|---|
| 21 | |
|---|
| 22 | virtual void update (float timeStamp); |
|---|
| 23 | |
|---|
| 24 | private: |
|---|
| 25 | NullParent (); |
|---|
| 26 | NullParent (Vector* absCoordinate); |
|---|
| 27 | |
|---|
| 28 | }; |
|---|
| 29 | |
|---|
| 30 | #endif /* _NULL_PARENT_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.