HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SIM_Container.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  */
7 
8 #ifndef __SIM_Container_h__
9 #define __SIM_Container_h__
10 
11 #include "SIM_API.h"
12 #include "SIM_DataUtils.h"
13 
14 /// This SIM_Data subclass is a simple container for other data. This is
15 /// the default data type used when creating subdata more than one level
16 /// deep inside another data.
18 {
19 protected:
20  /// The constructor for when this data is created by our SIM_DataFactory.
21  explicit SIM_Container(const SIM_DataFactory *factory);
22  ~SIM_Container() override;
23 
24 private:
25  static const SIM_DopDescription *getContainerDopDescription();
26 
29  SIM_Data,
30  "Data Container",
31  getContainerDopDescription());
32 };
33 
34 #endif
35 
#define DECLARE_STANDARD_GETCASTTOTYPE()
Definition: SIM_DataUtils.h:50
#define DECLARE_DATAFACTORY(DataClass, SuperClass, Description, DopParms)
Definition: SIM_DataUtils.h:63
#define SIM_API
Definition: SIM_API.h:12