2018-12-27 23:11:32 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Handle the PythonInit, module registers and DeInit
|
|
|
|
///
|
|
|
|
class PythonInit
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
friend class HyperionDaemon;
|
2020-08-08 23:12:43 +02:00
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
PythonInit();
|
|
|
|
~PythonInit();
|
|
|
|
};
|