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
325 B
22 lines
325 B
#ifndef WRAPPER_H
|
|
#define WRAPPER_H
|
|
|
|
#include <qvbox.h>
|
|
#include <qtranslator.h>
|
|
|
|
|
|
class Wrapper : public QVBox
|
|
{
|
|
public:
|
|
Wrapper(QWidget *parent, int i, const char *name = 0)
|
|
: QVBox(parent, name, WDestructiveClose), translator(this), id(i)
|
|
{
|
|
}
|
|
|
|
QTranslator translator;
|
|
int id;
|
|
};
|
|
|
|
|
|
#endif // WRAPPER_H
|