ctkSimplePythonManager.h 508 B

1234567891011121314151617181920212223242526272829
  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. virtual void executeInitializationScripts();
  17. };
  18. #endif