Sleeping Wombat Common Library  0.50.0
swCommonLibrary
PolymorphicObjectContainer.h
1 #pragma once
2 
3 #include "BaseObject.h"
4 
5 
6 namespace sw
7 {
8 
9 // ================================ //
10 //
12 {
13 public:
14 
15  BaseObject* ObjectPtr;
16 
17 public:
18 
19  // ================================ //
20  //
22  : ObjectPtr( nullptr )
23  {}
24 
25  // ================================ //
26  //
28  {
29  delete ObjectPtr;
30  }
31 
32 };
33 
34 
35 } // sw
36 
Definition: Exception.h:11
Definition: PolymorphicObjectContainer.h:11
Definition: BaseObject.h:21