Salome HOME
*** empty log message ***
[modules/gui.git] / src / PythonConsole / PythonConsole_PyConsole.cxx
index 250ddff2adf5e7a09d7206090d19026847729788..fed5b9bd47ca71d58f166147ab8e511c554dcd68 100755 (executable)
@@ -10,7 +10,7 @@ using namespace std;
 
 //****************************************************************
 PythonConsole::PythonConsole(QWidget* parent, PyInterp_base* interp)
-: QWidget(parent)
+: QWidget(parent), myEditor( 0 )
 {
   // create python interpreter
   myInterp = interp;
@@ -31,3 +31,9 @@ PythonConsole::~PythonConsole()
 {
 }
 
+//****************************************************************
+void PythonConsole::exec( const QString& command )
+{
+  if ( myEditor )
+    myEditor->exec( command );
+}