OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
EntitySolverGetDP.h
Go to the documentation of this file.
1#pragma once
2#pragma warning(disable : 4251)
3
4#include "EntitySolver.h"
5#include "OldTreeIcon.h"
6
7#include <list>
8#include <string>
9
10class __declspec(dllexport) EntitySolverGetDP : public EntitySolver
11{
12public:
13 EntitySolverGetDP(ot::UID ID, EntityBase *parent, EntityObserver *obs, ModelState *ms, ClassFactoryHandler* factory, const std::string &owner);
14 virtual ~EntitySolverGetDP();
15
16 virtual std::string getClassName(void) override { return "EntitySolverGetDP"; } ;
17
18 void createProperties(std::string& _meshFolderName, ot::UID& _meshFolderID, std::string& _meshName, ot::UID& _meshID);
19
20 virtual bool updateFromProperties(void) override;
21
22protected:
23 virtual int getSchemaVersion(void) override { return 1; } ;
24
25private:
26};
27
unsigned long UID
Unique identifier (32 bit unsigned integer)
Definition CoreTypes.h:27