summaryrefslogtreecommitdiffstats
path: root/writerfilter/inc
diff options
context:
space:
mode:
authorHenning Brinkmann <hbrinkm@openoffice.org>2010-05-18 15:20:51 +0200
committerHenning Brinkmann <hbrinkm@openoffice.org>2010-05-18 15:20:51 +0200
commit3240e00e81ae9566bcbc4007b843e773494eabd0 (patch)
tree4115610547ff8febd63421c506bd23fb5bce5aef /writerfilter/inc
parentwriterfilter08: resolve WW8DopBase (diff)
downloadcore-3240e00e81ae9566bcbc4007b843e773494eabd0.tar.gz
core-3240e00e81ae9566bcbc4007b843e773494eabd0.zip
writerfilter08: TagLogger: log uno property sets
Diffstat (limited to 'writerfilter/inc')
-rw-r--r--writerfilter/inc/resourcemodel/TagLogger.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/writerfilter/inc/resourcemodel/TagLogger.hxx b/writerfilter/inc/resourcemodel/TagLogger.hxx
index 387d4e0e156a..055656832761 100644
--- a/writerfilter/inc/resourcemodel/TagLogger.hxx
+++ b/writerfilter/inc/resourcemodel/TagLogger.hxx
@@ -31,6 +31,7 @@
#ifdef DEBUG
#include <rtl/ustring.hxx>
+#include <com/sun/star/beans/XPropertySet.hpp>
#include <WriterFilterDllApi.hxx>
#include <resourcemodel/WW8ResourceModel.hxx>
#include <string>
@@ -78,8 +79,10 @@ namespace writerfilter
void addAttr(string name, string value);
void addAttr(string name, const ::rtl::OUString & value);
void addAttr(string name, sal_uInt32 nValue);
+ void addAttr(string name, uno::Any rAny);
void addTag(Pointer_t pTag);
void chars(const string & rChars);
+ void chars(const ::rtl::OUString & rChars);
const string & getTag() const;
string toString() const;
@@ -112,6 +115,7 @@ namespace writerfilter
void attribute(const string & name, const string & value);
void attribute(const string & name, const ::rtl::OUString & value);
void attribute(const string & name, sal_uInt32 value);
+ void attribute(const string & name, const uno::Any aAny);
void addTag(XMLTag::Pointer_t pTag);
void chars(const string & chars);
void chars(const ::rtl::OUString & chars);
@@ -147,6 +151,8 @@ namespace writerfilter
virtual void attribute(Id name, Value & val);
virtual void sprm(Sprm & sprm);
};
+
+WRITERFILTER_DLLPUBLIC XMLTag::Pointer_t unoPropertySetToTag(uno::Reference<beans::XPropertySet> rPropSet);
}
#endif // DEBUG