mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
19 lines
509 B
C++
19 lines
509 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, bool loadPlugins = true) { KXMLGUIClient::setComponentData(inst, loadPlugins); }
|
|
|
|
public Q_SLOTS:
|
|
void slotSec();
|
|
};
|
|
#endif
|