diff options
| author | 2010-08-06 12:57:55 +0000 | |
|---|---|---|
| committer | 2010-08-06 12:57:55 +0000 | |
| commit | 3cec234bf423b81ef7caf8a2bcbe6dc96575be6b (patch) | |
| tree | b2bff1dac9b6205d9447d05a19a01d96602b2f38 /src/modules/dcc/window.h | |
| parent | implemented support for dcc.send -s (ssl) (diff) | |
| download | KVIrc-3cec234bf423b81ef7caf8a2bcbe6dc96575be6b.tar.gz KVIrc-3cec234bf423b81ef7caf8a2bcbe6dc96575be6b.tar.bz2 KVIrc-3cec234bf423b81ef7caf8a2bcbe6dc96575be6b.zip | |
implemented $dcc.getSSLInfo() as part of the request for ticket #866
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4793 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc/window.h')
| -rw-r--r-- | src/modules/dcc/window.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/modules/dcc/window.h b/src/modules/dcc/window.h index cfc5a1acc..2b51d8c3c 100644 --- a/src/modules/dcc/window.h +++ b/src/modules/dcc/window.h @@ -28,6 +28,7 @@ #include "marshal.h" #include "kvi_window.h" +class KviDccThread; class KviDccWindow : public KviWindow , public KviDccMarshalOutputContext { @@ -39,11 +40,11 @@ protected: KviDccDescriptor * m_pDescriptor; KviDccMarshal * m_pMarshal; public: - KviDccDescriptor * descriptor(){ return m_pDescriptor; }; - const KviDccMarshal * marshal(){ return m_pMarshal; }; - - virtual KviWindow * dccMarshalOutputWindow(); - virtual const char * dccMarshalOutputContextString(); + KviDccDescriptor * descriptor() { return m_pDescriptor; }; + const KviDccMarshal * marshal() { return m_pMarshal; }; + virtual KviDccThread * getSlaveThread() { return 0; }; + virtual KviWindow * dccMarshalOutputWindow(); + virtual const char * dccMarshalOutputContextString(); }; #endif //_WINDOW_H_ |
