Sophie

Sophie

distrib > Mandriva > 2007.1 > x86_64 > by-pkgid > 39815cfb0428fd9d1c438b6b3c91a209 > files > 188

qt3-example-3.3.8-4.2mdv2007.1.x86_64.rpm

#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