blob: 7b6cb328e9251452d01406c7d3b48e2e5cabd64f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// $Id$
#ifndef KLOCALETEST_H
#define KLOCALETEST_H
#include <qwidget.h>
class QLabel;
/** test: a small test program for KLocale
*/
class Test : public QWidget
{
Q_OBJECT
public:
/**@name methods */
//@{
/** Constructor
*/
Test( QWidget *parent=0, const char *name=0 );
/** Destructor
*/
~Test();
private:
QString showLocale(QString cat);
void createFields();
QLabel *label;
};
#endif // TEST_H
|