source:
orxonox.OLD/orxonox/trunk/src/null_parent.h
@
3475
Last change on this file since 3475 was 3365, checked in by bensch, 20 years ago | |
---|---|
File size: 477 bytes |
Rev | Line | |
---|---|---|
[3276] | 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" | |
[3308] | 11 | #include "p_node.h" |
[3276] | 12 | |
13 | ||
[3308] | 14 | class NullParent : public PNode { |
[3276] | 15 | |
16 | public: | |
[3311] | 17 | static NullParent* getInstance (); |
[3276] | 18 | ~NullParent (); |
[3311] | 19 | |
20 | static NullParent* singletonRef; | |
[3276] | 21 | |
[3302] | 22 | virtual void update (float timeStamp); |
[3276] | 23 | |
[3311] | 24 | private: |
25 | NullParent (); | |
26 | NullParent (Vector* absCoordinate); | |
27 | ||
[3276] | 28 | }; |
29 | ||
30 | #endif /* _NULL_PARENT_H */ |
Note: See TracBrowser
for help on using the repository browser.