summaryrefslogtreecommitdiffstats
path: root/examples/demo/i18n/wrapper.h
blob: b1bddf58615039789c6c011241b3abbdbb30cd49 (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 <qvbox.h>
#include <qtranslator.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