added the rtservice, Webserver, webfrontend with:
1. Monitoring 2. Monitoringfiles 3. Download
This commit is contained in:
@@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user