#ifndef KXMLGUITEST_H #define KXMLGUITEST_H #include #include 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