Changeset 7904
- Timestamp:
- Feb 16, 2011, 10:23:00 PM (14 years ago)
- Location:
- code/trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/network/LANDiscoverable.h
r7163 r7904 34 34 namespace orxonox 35 35 { 36 36 37 37 class LANDiscoverable 38 38 { 39 39 public: 40 40 LANDiscoverable(); 41 ~LANDiscoverable();41 virtual ~LANDiscoverable(); 42 42 void setActivity( bool bActive ); 43 43 void update(); 44 44 45 45 private: 46 46 bool bActive_; -
code/trunk/src/libraries/util/Singleton.h
r7401 r7904 162 162 163 163 //! Destructor resets the singleton instance pointer 164 ~Singleton()164 virtual ~Singleton() 165 165 { 166 166 assert(T::singletonPtr_s != NULL); -
code/trunk/src/modules/overlays/hud/UnderAttackHealthBar.h
r6054 r7904 42 42 public: 43 43 UnderAttackHealthBar(BaseObject* creator); 44 ~UnderAttackHealthBar();44 virtual ~UnderAttackHealthBar(); 45 45 46 46 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); -
code/trunk/src/orxonox/graphics/ParticleEmitter.h
r7163 r7904 41 41 public: 42 42 ParticleEmitter(BaseObject* creator); 43 ~ParticleEmitter();43 virtual ~ParticleEmitter(); 44 44 45 45 virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
Note: See TracChangeset
for help on using the changeset viewer.