make Python::init() method public and remove the now redundant Python::request() method

This commit is contained in:
Axel Kohlmeyer
2017-04-25 10:21:02 -04:00
parent 958f05a6f3
commit 2e1f8b4aef
2 changed files with 7 additions and 15 deletions

View File

@ -40,11 +40,10 @@ public:
char * long_string(int ifunc);
bool is_enabled() const;
void request();
void init();
private:
PythonInterface * impl;
void init();
};
}