Created bare workspace and datamodel classes

This commit is contained in:
andreja6
2018-05-01 11:47:23 -07:00
parent 388962a5e7
commit c875454b40
5 changed files with 48 additions and 0 deletions

10
DataModelInstance.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "instance.h"
class DataModelInstance :
public Instance
{
public:
DataModelInstance(void);
~DataModelInstance(void);
};