diff options
author | Kurt Zenker <kz@openoffice.org> | 2008-03-05 16:53:58 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2008-03-05 16:53:58 +0000 |
commit | af34da238dd55505f25e7d037b301c01e8c599f2 (patch) | |
tree | c8353a3eb3cf114fd85b75bd7e661c9e2398ace3 /oox/inc | |
parent | 777f0b06fe74d44578c378f83b37bc70fe6bcc99 (diff) |
INTEGRATION: CWS xmlfilter03_DEV300 (1.2.4); FILE MERGED
2008/02/05 14:05:25 dr 1.2.4.2: oox::core::ContextHandler2 and oox::core::FragmentHandler2 for convenience
2008/02/01 09:54:25 dr 1.2.4.1: addShape() code cleanup, started xlsx drawing import
Diffstat (limited to 'oox/inc')
-rw-r--r-- | oox/inc/oox/helper/attributelist.hxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/oox/inc/oox/helper/attributelist.hxx b/oox/inc/oox/helper/attributelist.hxx index 4aa975b50870..08c4d6b4c8a7 100644 --- a/oox/inc/oox/helper/attributelist.hxx +++ b/oox/inc/oox/helper/attributelist.hxx @@ -4,9 +4,9 @@ * * $RCSfile: attributelist.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2008-01-17 08:05:46 $ + * last change: $Author: kz $ $Date: 2008-03-05 17:53:58 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -55,6 +55,10 @@ public: explicit AttributeList( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList >& rxAttribs ); + /** Returns the wrapped com.sun.star.xml.sax.XFastAttributeList object. */ + inline ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XFastAttributeList > + getFastAttributeList() const { return mxAttribs; } + /** Returns true, if the specified attribute is present. */ bool hasAttribute( sal_Int32 nElement ) const; @@ -78,6 +82,10 @@ public: default value if the attribute is missing or not convertible to unsigned integer. */ sal_uInt32 getUnsignedInteger( sal_Int32 nElement, sal_uInt32 nDefault ) const; + /** Returns the 64-bit integer value of the specified attribute, or the passed + default value if the attribute is missing or not convertible to integer. */ + sal_Int64 getInteger64( sal_Int32 nElement, sal_Int64 nDefault ) const; + /** Returns the integer value of the specified hexadecimal attribute, or the passed default value if the attribute is missing or not convertible. */ sal_Int32 getHex( sal_Int32 nElement, sal_Int32 nDefault ) const; |