summaryrefslogtreecommitdiffstats
path: root/src/ReceiverThreads.vma/ReceiverThreads.h
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2018-08-14 21:58:29 +0200
committerSuren A. Chilingaryan <csa@suren.me>2018-08-14 21:58:29 +0200
commit5cdb425d6843c100189611c2edb37b03efc1dc5a (patch)
tree82c5e7397b2950c41c00d09ed8020e9d98ced693 /src/ReceiverThreads.vma/ReceiverThreads.h
parentad4fef28ad3fc8b73a3bf97c229e878e8c680e16 (diff)
downloadods-5cdb425d6843c100189611c2edb37b03efc1dc5a.tar.gz
ods-5cdb425d6843c100189611c2edb37b03efc1dc5a.tar.bz2
ods-5cdb425d6843c100189611c2edb37b03efc1dc5a.tar.xz
ods-5cdb425d6843c100189611c2edb37b03efc1dc5a.zip
Make it compatible with CentOS 7.5
Diffstat (limited to 'src/ReceiverThreads.vma/ReceiverThreads.h')
-rw-r--r--src/ReceiverThreads.vma/ReceiverThreads.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/ReceiverThreads.vma/ReceiverThreads.h b/src/ReceiverThreads.vma/ReceiverThreads.h
deleted file mode 100644
index 3cc986c..0000000
--- a/src/ReceiverThreads.vma/ReceiverThreads.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright 2016
- *
- * ReceiverThreads.h
- *
- * Created on: 21.07.2016
- * Author: Tobias Frust
- */
-
-#ifndef RECEIVERTHREADS_H_
-#define RECEIVERTHREADS_H_
-
-#include <vector>
-#include <thread>
-
-class ReceiverThreads {
-public:
- ReceiverThreads(const std::string& address, const int timeIntervall, const int numberOfDetectorModules);
-
- auto run() -> void;
-private:
- auto receiverThread(const int port) -> void;
-
- std::vector<std::thread> receiverModules_;
-
- std::size_t loss_;
-
- int timeIntervall_;
- int numberOfDetectorModules_;
-
- std::string address_;
-};
-
-#endif /* RECEIVERTHREADS_H_ */