mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-25 11:22:50 +00:00
20 lines
471 B
C
20 lines
471 B
C
![]() |
#ifndef KXMLGUITEST_H
|
||
|
#define KXMLGUITEST_H
|
||
|
|
||
|
#include <kxmlguiclient.h>
|
||
|
#include <QtCore/QObject>
|
||
|
|
||
|
class Client : public QObject, public KXMLGUIClient
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
Client() {}
|
||
|
|
||
|
void setXMLFile( const QString &f, bool merge = true, bool setXMLDoc = true ) { KXMLGUIClient::setXMLFile( f, merge, setXMLDoc ); }
|
||
|
void setComponentData(const KComponentData &inst) { KXMLGUIClient::setComponentData(inst); }
|
||
|
|
||
|
public Q_SLOTS:
|
||
|
void slotSec();
|
||
|
};
|
||
|
#endif
|