Salome HOME
add the template command
[tools/sat.git] / data / templates / PythonComponent / src / View / Menu.py
1 from PyQt4.QtGui import *
2 from PyQt4.QtCore import *
3
4 class Menu( QMenu ) :
5
6    def __init__( self, item ) :
7        """Constructor"""
8
9        QMenu.__init__( self )
10        self._item = item
11        pass
12
13    def getItem( self ) :
14        return self._item
15
16 pass