Salome HOME
NRI : Merge from V1_2.
[modules/kernel.git] / src / SALOMEGUI / PyInterp_PyQt.h
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
2 //
3 //  Copyright (C) 2003  CEA/DEN, EDF R&D
4 //
5 //
6 //
7 //  File   : PyInterp_PyQt.h
8 //  Author : Christian CAREMOLI, Paul RASCLE, EDF
9 //  Module : SALOME
10 //  $Header$
11
12 #ifndef _PYINTERP_PYQT_H_
13 #define _PYINTERP_PYQT_H_
14
15 #include "PyInterp_base.h"
16
17 class PyInterp_PyQt : public PyInterp_base
18 {
19  public:
20   PyInterp_PyQt();
21   ~PyInterp_PyQt();
22   void enter();
23   void quit();
24   void run(const char *command);
25
26  protected:
27   void initState();
28   void initContext();  
29 };
30
31 #endif