OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
OwnerServiceGlobal.h
Go to the documentation of this file.
1#pragma once
2
4
5namespace ot
6{
7 class __declspec(dllexport) OwnerServiceGlobal : public OwnerService {
8 public:
9 static OwnerServiceGlobal& instance(void);
10
11
12 private:
13 OwnerServiceGlobal() : OwnerService() {};
14 virtual ~OwnerServiceGlobal() {};
15
16 OwnerServiceGlobal(const OwnerServiceGlobal&) = delete;
17 OwnerServiceGlobal& operator = (const OwnerServiceGlobal&) = delete;
18 };
19}
Definition Connector.h:8