repo.or.cz
/
CMakeLuaTailorHgBridge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Resync
[CMakeLuaTailorHgBridge.git]
/
CMakeLua
/
Source
/
QtDialog
/
Compilers.h
blob
e9c90a50490e61911f0e50e66cd24b36d613702e
1
2
3
#ifndef COMPILERS_HPP
4
#define COMPILERS_HPP
5
6
#include <QWidget>
7
#include <ui_Compilers.h>
8
9
class
Compilers
:
public
QWidget
,
public Ui
::
Compilers
10
{
11
Q_OBJECT
12
public
:
13
Compilers
(
QWidget
*
p
=
NULL
) :
14
QWidget
(
p
)
15
{
16
this
->
setupUi
(
this
);
17
}
18
};
19
20
#endif
21