hmm
This commit is contained in:
18
src/include/DataModelV2/Instance.h
Normal file
18
src/include/DataModelV2/Instance.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
#include <G3DAll.h>
|
||||
|
||||
class Instance
|
||||
{
|
||||
public:
|
||||
static Instance* Instance::Create(std::string classname)
|
||||
{
|
||||
|
||||
}
|
||||
Instance(void);
|
||||
Instance(const Instance &);
|
||||
~Instance(void);
|
||||
std::vector<Instance*>* getChildren();
|
||||
protected:
|
||||
std::vector<Instance*> children;
|
||||
Instance * parent;
|
||||
}
|
||||
0
src/source/DataModelV2/Instance.cpp
Normal file
0
src/source/DataModelV2/Instance.cpp
Normal file
Reference in New Issue
Block a user