Sophie

Sophie

distrib > Fedora > 14 > x86_64 > media > updates > by-pkgid > 595000b5133f4458e88b0ef6355a26be > files > 174

qt3-devel-docs-3.3.8b-37.fc14.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