OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
EntityBlockCircuitConnector.h
Go to the documentation of this file.
1#pragma once
2#include "EntityBlock.h"
3class __declspec(dllexport) EntityBlockCircuitConnector : public EntityBlock
4{
5public:
6 EntityBlockCircuitConnector(ot::UID ID, EntityBase* parent, EntityObserver* obs, ModelState* ms, ClassFactoryHandler* factory, const std::string& owner);
7 virtual std::string getClassName(void) override { return "EntityBlockCircuitConnector"; };
8 virtual entityType getEntityType(void) override { return TOPOLOGY; };
9 virtual ot::GraphicsItemCfg* CreateBlockCfg() override;
10
11
12
13private:
14
15 ot::Connector m_LeftConnector;
16
17
18 void AddStorageData(bsoncxx::builder::basic::document& storage) override;
19 void readSpecificDataFromDataBase(bsoncxx::document::view& doc_view, std::map<ot::UID, EntityBase*>& entityMap) override;
20
21
22};
The GraphicsItemCfg is the base class for all graphics item configurations.
Definition GraphicsItemCfg.h:33
unsigned long UID
Unique identifier (32 bit unsigned integer)
Definition CoreTypes.h:27