Salome HOME
Initialisation de la base KERNEL avec la version operationnelle de KERNEL_SRC issue...
[modules/kernel.git] / src / SALOMEGUI / QAD_ListPopupMenu.cxx
1 using namespace std;
2 //  File      : QAD_ListPopupMenu.cxx
3 //  Created   : Thu Jun 14 13:53:41 2001
4 //  Author    : Nicolas REJNERI
5 //  Project   : SALOME
6 //  Module    : SALOMEGUI
7 //  Copyright : Open CASCADE 2001
8 //  $Header$
9
10
11 #include "QAD_ListPopupMenu.h"
12
13 /*!
14   Constructor.
15 */
16 QAD_ListPopupMenu::QAD_ListPopupMenu(QPopupMenu* thePopup,
17                                      const QString & theContext,
18                                      const QString & theParent,
19                                      const QString & theObject)
20 {
21   myPopup   = thePopup;
22   myContext = theContext;
23   myParent  = theParent;
24   myObject  = theObject;
25 }
26
27 /*!
28   Destructor.
29 */
30 QAD_ListPopupMenu::~QAD_ListPopupMenu()
31 {
32 }