next version

This commit is contained in:
2024-06-25 20:47:51 +02:00
parent 34f4d6cdba
commit cbc3ac7a64
85 changed files with 36723 additions and 3 deletions

21
include/GILLock.h Normal file
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;
};