blob: 9b6704ab3ddd8ae9e4945171d67725af26605728 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __xpart_browsersignals_h__
#define __xpart_browsersignals_h__
#include <dcopobject.h>
class XBrowserSignals : public DCOPObject
{
K_DCOP
k_dcop:
virtual ASYNC openURLRequest( const TTQCString &url) = 0;
virtual ASYNC createNewWindow( const TTQCString &url ) = 0;
};
#endif
|