You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
333 B
22 lines
333 B
#ifndef WRAPPER_H
|
|
#define WRAPPER_H
|
|
|
|
#include <ntqvbox.h>
|
|
#include <ntqtranslator.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
|