summaryrefslogtreecommitdiffstats
path: root/writerfilter/inc
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-03-05 15:48:24 +0000
committerKurt Zenker <kz@openoffice.org>2008-03-05 15:48:24 +0000
commit3e8595e85929ea6f5d982ee823c2a9574fcba535 (patch)
treec735dc597cb40628b4b4a537191e62be8d38264c /writerfilter/inc
parentINTEGRATION: CWS xmlfilter03_DEV300 (1.20.2); FILE MERGED (diff)
downloadcore-3e8595e85929ea6f5d982ee823c2a9574fcba535.tar.gz
core-3e8595e85929ea6f5d982ee823c2a9574fcba535.zip
INTEGRATION: CWS xmlfilter03_DEV300 (1.13.2); FILE MERGED
2008/02/26 13:08:25 hbrinkm 1.13.2.5: undone changes aimed for xmlfilter04 2008/02/25 09:48:18 hbrinkm 1.13.2.4: additionally use type of footnote/endnote to specify which footnote/endnote to use 2008/02/15 08:49:37 hbrinkm 1.13.2.3: set/get XNoteId 2008/02/13 17:18:47 hbrinkm 1.13.2.2: getInputStreamForId 2008/01/22 09:13:38 hbrinkm 1.13.2.1: new method: getDocumentStream
Diffstat (limited to 'writerfilter/inc')
-rw-r--r--writerfilter/inc/ooxml/OOXMLDocument.hxx12
1 files changed, 10 insertions, 2 deletions
diff --git a/writerfilter/inc/ooxml/OOXMLDocument.hxx b/writerfilter/inc/ooxml/OOXMLDocument.hxx
index c467f1edee45..de430404aede 100644
--- a/writerfilter/inc/ooxml/OOXMLDocument.hxx
+++ b/writerfilter/inc/ooxml/OOXMLDocument.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: OOXMLDocument.hxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: obo $ $Date: 2008-01-10 11:32:22 $
+ * last change: $Author: kz $ $Date: 2008-03-05 16:48:23 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -121,6 +121,8 @@ public:
*/
virtual uno::Reference<io::XInputStream> getInputStream() = 0;
+ virtual uno::Reference<io::XInputStream> getDocumentStream() = 0;
+
/**
Returns component context for this stream.
*/
@@ -230,6 +232,7 @@ public:
const sal_Int32 type,
const rtl::OUString & rId) = 0;
+
/**
Returns target URL from relationships for a given id.
@@ -243,6 +246,11 @@ public:
virtual uno::Reference<frame::XModel> getModel() = 0;
virtual void setShapes(uno::Reference<drawing::XShapes> xShapes) = 0;
virtual uno::Reference<drawing::XShapes> getShapes() = 0;
+ virtual uno::Reference<io::XInputStream> getInputStream() = 0;
+ virtual uno::Reference<io::XInputStream> getInputStreamForId
+ (const ::rtl::OUString & rId) = 0;
+ virtual void setXNoteId(const rtl::OUString & rId) = 0;
+ virtual const ::rtl::OUString & getXNoteId() const = 0;
};