Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/coord/null_parent.h @ 3533

Last change on this file since 3533 was 3533, checked in by bensch, 19 years ago

orxonox/trunk: added some more files to the new destructor-type

File size: 508 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
14class NullParent : public PNode {
15
16 public:
17  static NullParent* getInstance ();
18  virtual ~NullParent ();
19  void destroy(void);
20 
21
22  static NullParent* singletonRef;
23
24  virtual void update (float timeStamp);
25
26 private:
27  NullParent ();
28  NullParent (Vector* absCoordinate);
29
30};
31
32#endif /* _NULL_PARENT_H */
Note: See TracBrowser for help on using the repository browser.