blob: de651e8a9428c8813ed2c4f21c2a849a43cb8984 (
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 <qobject.h>
class Client : public QObject, public KXMLGUIClient
{
Q_OBJECT
public:
Client() {}
void setXMLFile( const QString &f, bool merge = true ) { KXMLGUIClient::setXMLFile( f, merge ); }
void setInstance( KInstance *inst ) { KXMLGUIClient::setInstance( inst ); }
public slots:
void slotSec();
};
#endif
|