C++ main module for mmsd Package  1.0
MM_Data.h
Go to the documentation of this file.
1 #ifndef MM_Data_H
2 #define MM_Data_H
3 
4 #include "CORE_Object.h"
5 #include "CORE_ListPointers.h"
6 
7 #include "CORE_String.h"
8 
9 
17 class MM_Data : public virtual CORE_Object {
18 
19  SP_OBJECT(MM_Data);
20 
21 
22 
23 protected:
24  // METHODS
25 
26  // CONSTRUCTORS
27 
29  MM_Data(void) {
30  setType("mData");
31  }
32 
33 
34 
35  // DESTRUCTORS
36 
37 
40  virtual ~MM_Data(void) {
41  }
42 
43 
44 };
45 
46 #endif
DEFINE_SVPTR(MM_Data)
DEFINE_SPTR(MM_Data)
MM_Data(void)
create an object
Definition: MM_Data.h:29
virtual ~MM_Data(void)
destroy an object.
Definition: MM_Data.h:40
This class is a data.
Definition: MM_Data.h:17
abstract base class for most classes.
Definition: CORE_Object.h:30
virtual void setType(tString type)
set the type of the object
Definition: CORE_Object.h:116