Last change
on this file since 168 was 160, checked in by dmik, 19 years ago |
Imported table and iconview modules and a bunch of dependent examples from the official release 3.3.1 from Trolltech.
|
-
Property svn:keywords
set to
Id
|
File size:
346 bytes
|
Line | |
---|
1 | #ifndef WRAPPER_H
|
---|
2 | #define WRAPPER_H
|
---|
3 |
|
---|
4 | #include <qvbox.h>
|
---|
5 | #include <qtranslator.h>
|
---|
6 |
|
---|
7 |
|
---|
8 | class Wrapper : public QVBox
|
---|
9 | {
|
---|
10 | public:
|
---|
11 | Wrapper(QWidget *parent, int i, const char *name = 0)
|
---|
12 | : QVBox(parent, name, WDestructiveClose), translator(this), id(i)
|
---|
13 | {
|
---|
14 | }
|
---|
15 |
|
---|
16 | QTranslator translator;
|
---|
17 | int id;
|
---|
18 | };
|
---|
19 |
|
---|
20 |
|
---|
21 | #endif // WRAPPER_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.