summaryrefslogtreecommitdiffstats
path: root/tdecore/tests/klocaletest.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdecore/tests/klocaletest.h')
-rw-r--r--tdecore/tests/klocaletest.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/tdecore/tests/klocaletest.h b/tdecore/tests/klocaletest.h
new file mode 100644
index 000000000..83f4f5cef
--- /dev/null
+++ b/tdecore/tests/klocaletest.h
@@ -0,0 +1,32 @@
+// $Id$
+
+#ifndef KLOCALETEST_H
+#define KLOCALETEST_H
+
+#include <tqwidget.h>
+
+class TQLabel;
+
+/** test: a small test program for KLocale
+ */
+class Test : public TQWidget
+{
+ Q_OBJECT
+
+public:
+ /**@name methods */
+ //@{
+ /** Constructor
+ */
+ Test( TQWidget *parent=0, const char *name=0 );
+ /** Destructor
+ */
+ ~Test();
+
+private:
+ TQString showLocale(TQString cat);
+ void createFields();
+
+ TQLabel *label;
+};
+#endif // TEST_H