2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing the a class used to display the interfaces (IDL) part of the project. | 7 Module implementing the a class used to display the interfaces (IDL) part of the project. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
11 try: | |
12 str = unicode | |
13 except (NameError): | |
14 pass | |
9 | 15 |
10 import os | 16 import os |
11 import glob | 17 import glob |
12 | 18 |
13 from PyQt4.QtCore import QThread, pyqtSignal, QProcess | 19 from PyQt4.QtCore import QThread, pyqtSignal, QProcess |