summaryrefslogtreecommitdiffstats
path: root/xparts/src/interfaces/xbrowserextension.h
blob: 5729744198308158c42f98f9e7fcb1dbc5373b6b (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 QByteArray saveState() = 0;
    virtual void restoreState( QByteArray state ) = 0;
};

#endif