blob: 433807b784f49d62d3f50586b01f9871bbec1c2b (
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
{
TQ_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
|