summaryrefslogtreecommitdiffstats
path: root/examples/demo/i18n/wrapper.h
blob: 882add78d8e9a2cec28530d34d0c319bf5e475e3 (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 <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