From bd0f3345a938b35ce6a12f6150373b0955b8dd12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:24:15 -0500 Subject: Add Qt3 development HEAD version --- examples/demo/i18n/wrapper.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 examples/demo/i18n/wrapper.h (limited to 'examples/demo/i18n/wrapper.h') diff --git a/examples/demo/i18n/wrapper.h b/examples/demo/i18n/wrapper.h new file mode 100644 index 0000000..ed5c98b --- /dev/null +++ b/examples/demo/i18n/wrapper.h @@ -0,0 +1,21 @@ +#ifndef WRAPPER_H +#define WRAPPER_H + +#include +#include + + +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 -- cgit v1.2.3