summaryrefslogtreecommitdiff
path: root/chart2/source/inc/CachedDataSequence.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/inc/CachedDataSequence.hxx')
-rw-r--r--chart2/source/inc/CachedDataSequence.hxx20
1 files changed, 2 insertions, 18 deletions
diff --git a/chart2/source/inc/CachedDataSequence.hxx b/chart2/source/inc/CachedDataSequence.hxx
index c13c8883baf9..22b2c9311085 100644
--- a/chart2/source/inc/CachedDataSequence.hxx
+++ b/chart2/source/inc/CachedDataSequence.hxx
@@ -37,7 +37,6 @@
#include <comphelper/propertycontainer.hxx>
#include <comphelper/proparrhlp.hxx>
#include "ServiceMacros.hxx"
-#include "charttoolsdllapi.hxx"
// interfaces and types
#include <com/sun/star/lang/XServiceInfo.hpp>
@@ -69,7 +68,7 @@ typedef ::cppu::WeakComponentImplHelper7<
CachedDataSequence_Base;
}
-class OOO_DLLPUBLIC_CHARTTOOLS CachedDataSequence :
+class CachedDataSequence :
public ::comphelper::OMutexAndBroadcastHelper,
public ::comphelper::OPropertyContainer,
public ::comphelper::OPropertyArrayUsageHelper< CachedDataSequence >,
@@ -84,25 +83,11 @@ public:
const ::com::sun::star::uno::Reference<
::com::sun::star::uno::XComponentContext > & xContext );
- /** creates a sequence and initializes it with the given vector of floating
- point numbers
- */
- explicit CachedDataSequence( const ::std::vector< double > & rVector );
-
- /** creates a sequence and initializes it with the given vector of strings
- */
- explicit CachedDataSequence( const ::std::vector< ::rtl::OUString > & rVector );
-
/** creates a sequence and initializes it with the given string. This is
especially useful for labels, which only have one element.
*/
explicit CachedDataSequence( const ::rtl::OUString & rSingleText );
- /** creates a sequence and initializes it with the given vector of arbitrary
- content
- */
- explicit CachedDataSequence( const ::std::vector< ::com::sun::star::uno::Any > & rVector );
-
/// Copy CTOR
explicit CachedDataSequence( const CachedDataSequence & rSource );
@@ -167,8 +152,6 @@ protected:
// <properties>
sal_Int32 m_nNumberFormatKey;
::rtl::OUString m_sRole;
- sal_Bool m_bIsHidden;
- ::com::sun::star::uno::Sequence< sal_Int32 > m_aHiddenValues;
// </properties>
enum DataType
@@ -183,6 +166,7 @@ protected:
*/
void registerProperties();
+private:
/** is used by interface method getNumericalData().
*/
::com::sun::star::uno::Sequence< double > Impl_getNumericalData() const;