summaryrefslogtreecommitdiffstats
path: root/xparts/src/interfaces/xbrowserextension.h
blob: b097ab65167b33a480189647df7ef3affd0b5290 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __xpart_browser_h__
#define __xpart_browser_h__

#include <dcopref.h>

class XBrowserExtension : public DCOPObject
{
    K_DCOP
    
k_dcop:
    virtual void setBrowserSignals( const DCOPRef &ref) = 0;

    virtual TQByteArray saveState() = 0;
    virtual void restoreState( TQByteArray state ) = 0;
};

#endif