00001 /*=auto========================================================================= 00002 00003 Portions (c) Copyright 2005 Brigham and Women's Hospital (BWH) 00004 All Rights Reserved. 00005 00006 See Doc/copyright/copyright.txt 00007 or http://www.slicer.org/copyright/copyright.txt for details. 00008 00009 Program: 3D Slicer 00010 00011 =========================================================================auto=*/ 00012 00013 #ifndef __qSlicerPythonManager_h 00014 #define __qSlicerPythonManager_h 00015 00016 // qVTK includes 00017 # include <qVTKAbstractPythonManager.h> 00018 00019 #include "qSlicerBaseQTCoreExport.h" 00020 00021 class PythonQtObjectPtr; 00022 00023 class Q_SLICER_BASE_QTCORE_EXPORT qSlicerPythonManager : public qVTKAbstractPythonManager 00024 { 00025 Q_OBJECT 00026 00027 public: 00028 typedef qVTKAbstractPythonManager Superclass; 00029 qSlicerPythonManager(QObject* parent=NULL); 00030 ~qSlicerPythonManager(); 00031 00032 protected: 00033 00034 virtual QStringList pythonPaths(); 00035 virtual void preInitialization(); 00036 00037 }; 00038 00039 #endif
1.6.1