OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
QtWrapper.h
Go to the documentation of this file.
1#pragma once
2//std Header
3#include <string>
4
5
6class QCoreApplication;
8
9class QtWrapper {
10public:
11 QtWrapper();
12
13 void run(const std::string& _serverName);
14
16private:
17 QCoreApplication* m_application;
18 ConnectionManager* m_connectionManager;
19
20 void worker(std::string _serverName);
21};
Definition ConnectionManager.h:10
Definition QtWrapper.h:9
QtWrapper()
Definition QtWrapper.cpp:13
void run(const std::string &_serverName)
Definition QtWrapper.cpp:18
ConnectionManager * getConnectionManager()
Definition QtWrapper.cpp:23