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

#endif