diff options
author | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2009-11-13 15:46:58 +0100 |
---|---|---|
committer | Philipp Lohmann [pl] <Philipp.Lohmann@Sun.COM> | 2009-11-13 15:46:58 +0100 |
commit | f323477de7b296489ae3104fd66c22100002d358 (patch) | |
tree | 279d85d6deac446212836dec25034684c68aeb95 /sw/inc/doc.hxx | |
parent | fd67b046624ff95b39950b8af30ad3ff90d26fe8 (diff) | |
parent | 1fc7845ffa5ee5842ab650ac7aaab0638fc4b4e4 (diff) |
merge with DEV300_m64
Diffstat (limited to 'sw/inc/doc.hxx')
-rw-r--r-- | sw/inc/doc.hxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index 5ea499a8ff82..c6d06cb2d54a 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -58,6 +58,7 @@ #include <IDocumentListsAccess.hxx> class SwList; // <-- +#include <IDocumentExternalData.hxx> #define _SVSTDARR_STRINGSDTOR #include <svtools/svstdarr.hxx> #include <com/sun/star/embed/XEmbeddedObject.hpp> @@ -278,8 +279,9 @@ class SW_DLLPUBLIC SwDoc : public IDocumentOutlineNodes, // <-- // --> OD 2008-03-12 #refactorlists# - public IDocumentListsAccess + public IDocumentListsAccess, // <-- + public IDocumentExternalData { friend void _InitCore(); @@ -1053,6 +1055,12 @@ public: const String sNewListStyleName ); // <-- + /** IDocumentExternalData */ + virtual void setExternalData(::sw::tExternalDataType eType, + ::sw::tExternalDataPointer pPayload); + virtual ::sw::tExternalDataPointer getExternalData(::sw::tExternalDataType eType); + + /** INextInterface here */ |