summaryrefslogtreecommitdiff
path: root/writerfilter/source/rtftok/rtfvalue.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2011-06-01 14:54:41 +0200
committerMiklos Vajna <vmiklos@frugalware.org>2011-06-01 14:54:41 +0200
commit4d97d0c4f3e80b0efd705253f69d9926832330bc (patch)
tree5ac5c6738766f0c2d387f7417d6044ea0faa49c2 /writerfilter/source/rtftok/rtfvalue.hxx
parent06548cb1e6bdc3bf5e57e33aba975ad498a30e03 (diff)
implement RTFValue::getProperties (it was a stub)
Diffstat (limited to 'writerfilter/source/rtftok/rtfvalue.hxx')
-rw-r--r--writerfilter/source/rtftok/rtfvalue.hxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/writerfilter/source/rtftok/rtfvalue.hxx b/writerfilter/source/rtftok/rtfvalue.hxx
index cae47b237864..9016e0014ae9 100644
--- a/writerfilter/source/rtftok/rtfvalue.hxx
+++ b/writerfilter/source/rtftok/rtfvalue.hxx
@@ -2,6 +2,7 @@
#define _RTFVALUE_HXX_
#include <string>
+#include <map>
#include <rtl/ustrbuf.hxx>
#include <resourcemodel/WW8ResourceModel.hxx>
@@ -15,6 +16,7 @@ namespace writerfilter {
typedef ::boost::shared_ptr<RTFValue> Pointer_t;
RTFValue(int nValue);
RTFValue(rtl::OUString sValue);
+ RTFValue(std::map<Id, RTFValue::Pointer_t> rAttributes);
virtual int getInt() const;
virtual rtl::OUString getString() const;
virtual uno::Any getAny() const;
@@ -26,6 +28,7 @@ namespace writerfilter {
private:
int m_nValue;
rtl::OUString m_sValue;
+ std::map<Id, RTFValue::Pointer_t> m_rAttributes;
};
} // namespace rtftok
} // namespace writerfilter