added the rtservice, Webserver, webfrontend with:

1. Monitoring
2. Monitoringfiles
3. Download
This commit is contained in:
2024-07-10 11:36:16 +02:00
parent 3f966ecc89
commit 96308eb092
29 changed files with 27475 additions and 17 deletions

View File

@@ -0,0 +1,21 @@
#include <boost/python.hpp>
#include <boost/thread.hpp>
//Use this class in a c++ funktion that called into python : c++ => python
class PyLockGIL
{
public:
PyLockGIL();
~PyLockGIL();
PyLockGIL(const PyLockGIL&) = delete;
PyLockGIL& operator=(const PyLockGIL&) = delete;
private:
PyGILState_STATE m_gstate;
};