blob: 9d17893013c36c46ede9d31a0eddcdedeee19505 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef KXMLGUITEST_H
#define KXMLGUITEST_H
#include <kxmlguiclient.h>
#include <tqobject.h>
class Client : public TQObject, public KXMLGUIClient
{
TQ_OBJECT
public:
Client() {}
void setXMLFile( const TQString &f, bool merge = true ) { KXMLGUIClient::setXMLFile( f, merge ); }
void setInstance( TDEInstance *inst ) { KXMLGUIClient::setInstance( inst ); }
public slots:
void slotSec();
};
#endif
|