diff options
author | Alexander Wilms <f.alexander.wilms@gmail.com> | 2014-02-25 19:06:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-01 09:51:32 -0600 |
commit | 8792ec7b2129650777b7b4bfacaa7c13d923279b (patch) | |
tree | f181e37b61533b460397cc68625fd21f46bb6393 /include/comphelper/sequenceashashmap.hxx | |
parent | dff29fadfe418421f2af9fd4f1dccc8a9b4cd545 (diff) |
Remove visual noise from include
Conflicts:
include/framework/preventduplicateinteraction.hxx
include/sfx2/sfxbasecontroller.hxx
include/sfx2/sfxbasemodel.hxx
include/toolkit/awt/vclxtabpagemodel.hxx
include/vcl/field.hxx
include/vcl/settings.hxx
Change-Id: Ibccf9f88c68267a3d7e656012b51eaf644c418c2
Reviewed-on: https://gerrit.libreoffice.org/8272
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/comphelper/sequenceashashmap.hxx')
-rw-r--r-- | include/comphelper/sequenceashashmap.hxx | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/include/comphelper/sequenceashashmap.hxx b/include/comphelper/sequenceashashmap.hxx index f5e495f2e1cc..63a409b1ebd7 100644 --- a/include/comphelper/sequenceashashmap.hxx +++ b/include/comphelper/sequenceashashmap.hxx @@ -52,40 +52,40 @@ struct SequenceAsHashMapBase : public ::boost::unordered_map< class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase { - //------------------------------------------- + public: - //--------------------------------------- + /** @short creates an empty hash map. */ SequenceAsHashMap(); - //--------------------------------------- + /** @see operator<<(const ::com::sun::star::uno::Any&) */ SequenceAsHashMap(const ::com::sun::star::uno::Any& aSource); - //--------------------------------------- + /** @see operator<<(const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >&) */ SequenceAsHashMap(const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& lSource); - //--------------------------------------- + /** @see operator<<(const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >&) */ SequenceAsHashMap(const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& lSource); - //--------------------------------------- + /** @see operator<<(const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >&) */ SequenceAsHashMap(const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& lSource); - //--------------------------------------- + /** @short not really used but maybe useful :-) */ ~SequenceAsHashMap(); - //--------------------------------------- + /** @short fill this map from the given any, which of course must contain a suitable sequence of element types @@ -105,7 +105,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase */ void operator<<(const ::com::sun::star::uno::Any& aSource); - //--------------------------------------- + /** @short fill this map from the given sequence, where every Any must contain an item from type "css.beans.PropertyValue" @@ -120,7 +120,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase */ void operator<<(const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& lSource); - //--------------------------------------- + /** @short fill this map from the given PropertyValue sequence. @@ -129,7 +129,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase */ void operator<<(const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& lSource); - //--------------------------------------- + /** @short fill this map from the given NamedValue sequence. @@ -138,7 +138,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase */ void operator<<(const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& lSource); - //--------------------------------------- + /** @short converts this map instance to an PropertyValue sequence. @@ -147,7 +147,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase */ void operator>>(::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& lDestination) const; - //--------------------------------------- + /** @short converts this map instance to an NamedValue sequence. @@ -156,7 +156,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase */ void operator>>(::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue >& lDestination) const; - //--------------------------------------- + /** @short return this map instance as an Any, which can be used in const environments only. @@ -174,7 +174,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase */ const ::com::sun::star::uno::Any getAsConstAny(bool bAsPropertyValue) const; - //--------------------------------------- + /** @short return this map instance to as a NamedValue sequence, which can be used in const environments only. @@ -188,7 +188,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase */ const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::NamedValue > getAsConstNamedValueList() const; - //--------------------------------------- + /** @short return this map instance to as a PropertyValue sequence, which can be used in const environments only. @@ -202,7 +202,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase */ const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > getAsConstPropertyValueList() const; - //--------------------------------------- + /** @short check if the specified item exists and return its (unpacked!) value or it returns the specified default value otherwise. @@ -240,7 +240,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase return aValue; } - //--------------------------------------- + /** @short creates a new item with the specified name and value only in case such item name does not already exist. @@ -274,7 +274,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase return false; } - //--------------------------------------- + /** @short check if all items of given map exists in these called map also. @@ -292,7 +292,7 @@ class COMPHELPER_DLLPUBLIC SequenceAsHashMap : public SequenceAsHashMapBase */ bool match(const SequenceAsHashMap& rCheck) const; - //--------------------------------------- + /** @short merge all values from the given map into this one. |