blob: 1adb1a14bdcb5a723fd9108d6985413370be1bea (
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
{
Q_OBJECT
public:
Client() {}
void setXMLFile( const TQString &f, bool merge = true ) { KXMLGUIClient::setXMLFile( f, merge ); }
void setInstance( KInstance *inst ) { KXMLGUIClient::setInstance( inst ); }
public slots:
void slotSec();
};
#endif
|