VPTissue Reference Manual
Server.h
Go to the documentation of this file.
1 #ifndef SIMPT_PAREX_SERVER_H_
2 #define SIMPT_PAREX_SERVER_H_
3 /*
4  * Copyright 2011-2016 Universiteit Antwerpen
5  *
6  * Licensed under the EUPL, Version 1.1 or as soon they will be approved by
7  * the European Commission - subsequent versions of the EUPL (the "Licence");
8  * You may not use this work except in compliance with the Licence.
9  * You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl5
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the Licence is distributed on an "AS IS" basis,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the Licence for the specific language governing
15  * permissions and limitations under the Licence.
16  */
22 #include <QTcpServer>
23 #include <memory>
24 
25 namespace SimPT_Parex {
26 
27 class ExplorationManager;
28 
32 class Server : public QTcpServer
33 {
34  Q_OBJECT
35 public:
43  Server(int minimumNodes, int port = 8888, QObject *parent = nullptr);
44 
48  virtual ~Server();
49 
50 private slots:
51  void HandleConnection();
52 
53 private:
54  std::shared_ptr<ExplorationManager> m_exploration_manager;
55 };
56 
57 } // namespace
58 
59 #endif // end-of-include-guard
see the online Qt documentation
Server(int minimumNodes, int port=8888, QObject *parent=nullptr)
Constructor.
Definition: Server.cpp:34
virtual ~Server()
Destructor.
Definition: Server.cpp:50
Namespace for SimPT parameter explorer package.
Definition: Client.cpp:52
see the online Qt documentation
Server class accepting TCP connections and setting up the server structures.
Definition: Server.h:32