ctkSimplePythonManager.h 461 B

12345678910111213141516171819202122232425262728
  1. #ifndef __ctkSimplePythonManager_h
  2. #define __ctkSimplePythonManager_h
  3. // CTK includes
  4. # include <ctkAbstractPythonManager.h>
  5. class PythonQtObjectPtr;
  6. class ctkSimplePythonManager : public ctkAbstractPythonManager
  7. {
  8. Q_OBJECT
  9. public:
  10. typedef ctkAbstractPythonManager Superclass;
  11. ctkSimplePythonManager(QObject* parent=0);
  12. ~ctkSimplePythonManager();
  13. protected:
  14. virtual QStringList pythonPaths();
  15. virtual void preInitialization();
  16. };
  17. #endif