blob: 6634b6107e77879d40457fed07fd8c49e8a2a322 (
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 <tqwidget.h>
class TQLabel;
/** test: a small test program for TDELocale
*/
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
|