blob: 155361ffafe7508bf8b7a63f3be75fb07a395bf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef WRAPPER_H
#define WRAPPER_H
#include <tqvbox.h>
#include <tqtranslator.h>
class Wrapper : public TQVBox
{
public:
Wrapper(TQWidget *parent, int i, const char *name = 0)
: TQVBox(parent, name, WDestructiveClose), translator(this), id(i)
{
}
TQTranslator translator;
int id;
};
#endif // WRAPPER_H
|