hmm
This commit is contained in:
@@ -400,6 +400,32 @@
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="DataModelV2"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\src\source\DataModelV2\Instance.cpp"
|
||||
>
|
||||
<FileConfiguration
|
||||
Name="Release|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
<FileConfiguration
|
||||
Name="Debug|Win32"
|
||||
>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
ObjectFile="$(IntDir)\$(InputName)1.obj"
|
||||
XMLDocumentationFileName="$(IntDir)\$(InputName)1.xdc"
|
||||
/>
|
||||
</FileConfiguration>
|
||||
</File>
|
||||
</Filter>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
@@ -536,6 +562,10 @@
|
||||
RelativePath=".\src\include\Listener\ToolbarListener.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\src\include\DataModel\WorkspaceInstance.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Tool"
|
||||
@@ -596,8 +626,12 @@
|
||||
RelativePath=".\src\include\DataModel\ToggleImageButtonInstance.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="DataModelV2"
|
||||
>
|
||||
<File
|
||||
RelativePath=".\src\include\DataModel\WorkspaceInstance.h"
|
||||
RelativePath=".\src\include\DataModelV2\Instance.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
|
||||
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