summaryrefslogtreecommitdiff
path: root/chart2/source/tools/InternalData.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-07-03 15:28:50 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-07-03 15:29:41 -0400
commit7649a14222dc1e5a7e01ed7c1d5e45a78143b41b (patch)
treec2fa9da43c2ee497b6c97f62205a0c9bb6bfeac0 /chart2/source/tools/InternalData.cxx
parent9dd152107c6a1644b180da24f01e3d5a3e309d13 (diff)
Make these non-inline.
Change-Id: I0de443a78e3024c7d3834f964a92f5ccdabe3cc3
Diffstat (limited to 'chart2/source/tools/InternalData.cxx')
-rw-r--r--chart2/source/tools/InternalData.cxx20
1 files changed, 20 insertions, 0 deletions
diff --git a/chart2/source/tools/InternalData.cxx b/chart2/source/tools/InternalData.cxx
index e5b2db6ca462..8f51469ec0c1 100644
--- a/chart2/source/tools/InternalData.cxx
+++ b/chart2/source/tools/InternalData.cxx
@@ -376,6 +376,16 @@ sal_Int32 InternalData::appendRow()
return getRowCount() - 1;
}
+sal_Int32 InternalData::getRowCount() const
+{
+ return m_nRowCount;
+}
+
+sal_Int32 InternalData::getColumnCount() const
+{
+ return m_nColumnCount;
+}
+
void InternalData::insertRow( sal_Int32 nAfterIndex )
{
// note: -1 is allowed, as we insert after the given index
@@ -496,6 +506,11 @@ void InternalData::setComplexRowLabels( const vector< vector< uno::Any > >& rNew
enlargeData( 0, nNewRowCount );
}
+InternalData::tVecVecAny InternalData::getComplexRowLabels() const
+{
+ return m_aRowLabels;
+}
+
void InternalData::setComplexColumnLabels( const vector< vector< uno::Any > >& rNewColumnLabels )
{
m_aColumnLabels = rNewColumnLabels;
@@ -506,6 +521,11 @@ void InternalData::setComplexColumnLabels( const vector< vector< uno::Any > >& r
enlargeData( nNewColumnCount, 0 );
}
+InternalData::tVecVecAny InternalData::getComplexColumnLabels() const
+{
+ return m_aColumnLabels;
+}
+
#ifdef DEBUG_INTERNAL_DATA
void InternalData::dump() const
{