Structural deformable models
DType.h
Go to the documentation of this file.
1 #ifndef _DTYPE_H_
2 #define _DTYPE_H_
3 
4 class DType {
5  public:
6  ~DType() {};
7  virtual bool isSameType(const DType* inst) const = 0;
8  virtual DType* createInstance() { return NULL; }
9 };
10 
11 #endif
#define NULL
Definition: simpletypes.h:9
virtual bool isSameType(const DType *inst) const =0
virtual DType * createInstance()
Definition: DType.h:8
~DType()
Definition: DType.h:6
Definition: DType.h:4