summaryrefslogtreecommitdiffstats
path: root/tdeui/tests/kxmlguitest.h
blob: bc88711f74c29ec07da51b0a3bdd7bf818c762a0 (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( TDEInstance *inst ) { KXMLGUIClient::setInstance( inst ); }

public slots:
    void slotSec();
};
#endif