mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
20 lines
294 B
C++
20 lines
294 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();
|
|
|
|
void handlePythonError(PyStatus status, PyConfig& config);
|
|
};
|