Salome HOME
Modify default icon for the module
[modules/gui.git] / src / PythonConsole / PythonConsole_PyConsole.h
index f18bc40239ffb999738f394c0cae685d16bb8b9b..77add60186882954f6488ba11512576921ab5639 100755 (executable)
@@ -10,12 +10,16 @@ class PyInterp_base;
 
 class PYCONSOLE_EXPORT PythonConsole: public QWidget
 {
+  Q_OBJECT;
+
 public:
   PythonConsole(QWidget* parent, PyInterp_base* interp = 0 );
   virtual ~PythonConsole();
 
   PyInterp_base* getInterp() { return myInterp; } 
 
+  void           exec( const QString& command );
+
 protected:
   PyInterp_base*          myInterp;
   PythonConsole_PyEditor* myEditor;