hyperion.ng/include/python/PythonInit.h
2024-11-15 12:37:43 +01:00

22 lines
336 B
C++

#pragma once
#undef slots
#include <Python.h>
#define slots Q_SLOTS
///
/// @brief Handle the PythonInit, module registers and DeInit
///
class PythonInit
{
private:
friend class HyperionDaemon;
PythonInit();
~PythonInit();
#if (PY_VERSION_HEX >= 0x03080000)
void handlePythonError(PyStatus status, PyConfig& config);
#endif
};