summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/MultiPropertySetHandler.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/chart/MultiPropertySetHandler.hxx')
-rw-r--r--xmloff/source/chart/MultiPropertySetHandler.hxx26
1 files changed, 0 insertions, 26 deletions
diff --git a/xmloff/source/chart/MultiPropertySetHandler.hxx b/xmloff/source/chart/MultiPropertySetHandler.hxx
index ba0b96483280..53e42c8ded35 100644
--- a/xmloff/source/chart/MultiPropertySetHandler.hxx
+++ b/xmloff/source/chart/MultiPropertySetHandler.hxx
@@ -24,7 +24,6 @@
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/beans/XMultiPropertySet.hpp>
-
/** @descr MultiPropertySetHandler handles the two slightly different
interfaces XPropertySet and XMultiPorpertySet for accessing
properties of an object.
@@ -60,9 +59,6 @@ public:
const OUString msName;
};
-
-
-
/** @descr For every property type there will be one instantiation of this
template class with its own and type specific version of SetValue.
*/
@@ -89,9 +85,6 @@ private:
T & mrValue;
};
-
-
-
/** @descr Function object for comparing two OUStrings.
*/
class OUStringComparison
@@ -104,9 +97,6 @@ public:
}
};
-
-
-
/** @descr This class lets you get the values from an object that either
supports the interface XPropertySet or XMultiPropertySet. If it
supports both interfaces then XMultiPropertySet is preferred.
@@ -184,19 +174,12 @@ private:
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface> mxObject;
};
-
-
-//===== Inline implementation of the methods declared above ==========================
-
MultiPropertySetHandler::MultiPropertySetHandler (::com::sun::star::uno::Reference<
::com::sun::star::uno::XInterface> xObject)
: mxObject (xObject)
{
}
-
-
-
MultiPropertySetHandler::~MultiPropertySetHandler (void)
{
::std::map< OUString, PropertyWrapperBase*, OUStringComparison>::iterator I;
@@ -204,8 +187,6 @@ MultiPropertySetHandler::~MultiPropertySetHandler (void)
delete I->second;
}
-
-
sal_Bool MultiPropertySetHandler::GetProperties (void)
{
::std::map< OUString, PropertyWrapperBase*, OUStringComparison>::iterator I;
@@ -219,9 +200,6 @@ sal_Bool MultiPropertySetHandler::GetProperties (void)
return sal_True;
}
-
-
-
sal_Bool MultiPropertySetHandler::MultiGet (const ::com::sun::star::uno::Sequence<
OUString> & rNameList)
{
@@ -247,9 +225,6 @@ sal_Bool MultiPropertySetHandler::MultiGet (const ::com::sun::star::uno::Se
return sal_True;
}
-
-
-
sal_Bool MultiPropertySetHandler::SingleGet (const ::com::sun::star::uno::Sequence<
OUString> & rNameList)
{
@@ -273,7 +248,6 @@ sal_Bool MultiPropertySetHandler::SingleGet (const ::com::sun::star::uno::Se
return sal_True;
}
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */