summaryrefslogtreecommitdiff
path: root/xmloff/source/style/FillStyleContext.hxx
diff options
context:
space:
mode:
authorChristian Lippka <cl@openoffice.org>2001-08-09 13:09:49 +0000
committerChristian Lippka <cl@openoffice.org>2001-08-09 13:09:49 +0000
commit899b65e8ebd67c131ce19e2fe27270fcf5645850 (patch)
tree92f1c2620fc8923c33ba0770673f6141904abefe /xmloff/source/style/FillStyleContext.hxx
parentc3c7522a0923e4aa4013a8dd349913f0224fd081 (diff)
#88757# added support for encoded images
Diffstat (limited to 'xmloff/source/style/FillStyleContext.hxx')
-rw-r--r--xmloff/source/style/FillStyleContext.hxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/xmloff/source/style/FillStyleContext.hxx b/xmloff/source/style/FillStyleContext.hxx
index 7039bded0697..5582d82cf093 100644
--- a/xmloff/source/style/FillStyleContext.hxx
+++ b/xmloff/source/style/FillStyleContext.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FillStyleContext.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:07:04 $
+ * last change: $Author: cl $ $Date: 2001-08-09 14:03:06 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -62,6 +62,10 @@
#ifndef _XMLOFF_FILLSTYLECONTEXTS_HXX_
#define _XMLOFF_FILLSTYLECONTEXTS_HXX_
+#ifndef _COM_SUN_STAR_IO_XOUTPUTSTREAM_HPP_
+#include <com/sun/star/io/XOutputStream.hpp>
+#endif
+
#ifndef _XMLOFF_XMLSTYLE_HXX //autogen
#include <xmlstyle.hxx>
#endif
@@ -116,6 +120,7 @@ class XMLBitmapStyleContext: public SvXMLStyleContext
private:
::com::sun::star::uno::Any maAny;
rtl::OUString maStrName;
+ ::com::sun::star::uno::Reference < ::com::sun::star::io::XOutputStream > mxBase64Stream;
public:
TYPEINFO();
@@ -124,6 +129,11 @@ public:
const com::sun::star::uno::Reference< com::sun::star::xml::sax::XAttributeList >& xAttrList );
virtual ~XMLBitmapStyleContext();
+ virtual SvXMLImportContext *CreateChildContext(
+ sal_uInt16 nPrefix,
+ const ::rtl::OUString& rLocalName,
+ const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList > & xAttrList );
+
virtual void EndElement();
};