summaryrefslogtreecommitdiff
path: root/embedserv/source
diff options
context:
space:
mode:
authorMikhail Voitenko <mav@openoffice.org>2003-03-10 15:04:11 +0000
committerMikhail Voitenko <mav@openoffice.org>2003-03-10 15:04:11 +0000
commitba41a201c9c94cef2e35cda0b571893661c83121 (patch)
treef2964318d46beeb1a0d147fcbda1c01dd94fb633 /embedserv/source
parent9fab8e06f452ed4872f60ea0dd90085350b8ffc3 (diff)
#i2822# container notification
Diffstat (limited to 'embedserv/source')
-rwxr-xr-xembedserv/source/inc/embeddoc.hxx12
1 files changed, 10 insertions, 2 deletions
diff --git a/embedserv/source/inc/embeddoc.hxx b/embedserv/source/inc/embeddoc.hxx
index e581ce904326..dea017aff9a6 100755
--- a/embedserv/source/inc/embeddoc.hxx
+++ b/embedserv/source/inc/embeddoc.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: embeddoc.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: mav $ $Date: 2003-03-05 15:49:20 $
+ * last change: $Author: mav $ $Date: 2003-03-10 16:04:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -65,6 +65,8 @@
#include "common.h"
#include <oleidl.h>
+#include <hash_map>
+
#ifndef _COM_SUN_STAR_UNO_REFERENCE_H_
#include <com/sun/star/uno/Reference.h>
#endif
@@ -72,6 +74,8 @@
#include <com/sun/star/uno/SEQUENCE.h>
#endif
+typedef ::std::hash_map< DWORD, IAdviseSink* > AdviseSinkHashMap;
+typedef ::std::hash_map< DWORD, IAdviseSink* >::iterator AdviseSinkHashMapIterator;
class GDIMetaFile;
@@ -158,6 +162,10 @@ protected:
sal_Bool m_bIsDirty;
CComPtr< IOleClientSite > m_pClientSite;
+ CComPtr< IDataAdviseHolder > m_pDAdviseHolder;
+
+ AdviseSinkHashMap m_aAdviseHashMap;
+ DWORD m_nAdviseNum;
};
#endif //_EMBEDDOC_HXX_