OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
SelectEntitiesDialogCfg.h
Go to the documentation of this file.
1
4// ###########################################################################################################################################################################################################################################################################################################################
5
6#pragma once
7
8// OpenTwin header
11
12// std header
13#include <list>
14#include <string>
15
16namespace ot {
17
19 public:
22
26 virtual void addToJsonObject(ot::JsonValue& _object, ot::JsonAllocator& _allocator) const override;
27
31 virtual void setFromJsonObject(const ot::ConstJsonObject& _object) override;
32
33 void setTitle(const std::string& _title) { m_title = _title; };
34 const std::string& title(void) const { return m_title; };
35
36 private:
37 std::string m_title;
38 };
39
40}
#define OT_GUI_API_EXPORT
Definition OTGuiAPIExport.h:9
Definition NavigationTreePackage.h:19
Definition SelectEntitiesDialogCfg.h:18
void setTitle(const std::string &_title)
Definition SelectEntitiesDialogCfg.h:33
const std::string & title(void) const
Definition SelectEntitiesDialogCfg.h:34
Definition Connector.h:8
rapidjson::Value JsonValue
Writable JSON value.
Definition JSON.h:27
rapidjson::GenericObject< true, rapidjson::GenericValue< rapidjson::UTF8<>, rapidjson::MemoryPoolAllocator< rapidjson::CrtAllocator > > > ConstJsonObject
Read only JSON Object.
Definition JSON.h:35
rapidjson::MemoryPoolAllocator< rapidjson::CrtAllocator > JsonAllocator
Allocator used for writing to JSON values.
Definition JSON.h:30