OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
EntityMesh.h
Go to the documentation of this file.
1#pragma once
2#pragma warning(disable : 4251)
3
4#include "EntityContainer.h"
5
6#include <list>
7#include <map>
8
9class __declspec(dllexport) EntityMesh : public EntityContainer
10{
11public:
12 EntityMesh(ot::UID ID, EntityBase *parent, EntityObserver *obs, ModelState *ms, ClassFactoryHandler* factory, const std::string &owner)
13 : EntityContainer(ID, parent, obs, ms, factory, owner){};
14 virtual ~EntityMesh() {};
15};
int ID
The ID datatype used for items.
Definition globalDataTypes.h:68
unsigned long UID
Unique identifier (32 bit unsigned integer)
Definition CoreTypes.h:27