summaryrefslogtreecommitdiffstats
path: root/sc/inc/dpobject.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-08-28 20:42:20 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-08-28 21:37:00 -0400
commit902e3898d385875029fda3b42c1854b159a18483 (patch)
tree13e6afaa2dbc14bbc78f74871c9c2b47d75ad837 /sc/inc/dpobject.hxx
parentWe don't check the extension for html (diff)
downloadcore-902e3898d385875029fda3b42c1854b159a18483.tar.gz
core-902e3898d385875029fda3b42c1854b159a18483.zip
Make some methods non-inline, and add method descriptions.
Change-Id: Ib8d5fa666827a7f97035ad37d05e305bb920c300
Diffstat (limited to 'sc/inc/dpobject.hxx')
-rw-r--r--sc/inc/dpobject.hxx14
1 files changed, 9 insertions, 5 deletions
diff --git a/sc/inc/dpobject.hxx b/sc/inc/dpobject.hxx
index 12b83edcbf1c..1ff70249ae16 100644
--- a/sc/inc/dpobject.hxx
+++ b/sc/inc/dpobject.hxx
@@ -130,13 +130,14 @@ public:
void Output( const ScAddress& rPos );
ScRange GetNewOutputRange( bool& rOverflow );
- const ScRange GetOutputRangeByType( sal_Int32 nType );
+
+ ScRange GetOutputRangeByType( sal_Int32 nType );
void SetSaveData(const ScDPSaveData& rData);
ScDPSaveData* GetSaveData() const { return pSaveData; }
void SetOutRange(const ScRange& rRange);
- const ScRange& GetOutRange() const { return aOutRange; }
+ const ScRange& GetOutRange() const;
void SetHeaderLayout(bool bUseGrid);
bool GetHeaderLayout() const { return mbHeaderLayout;}
@@ -394,9 +395,12 @@ public:
void FreeTable(ScDPObject* pDPObj);
SC_DLLPUBLIC bool InsertNewTable(ScDPObject* pDPObj);
- SheetCaches& GetSheetCaches() { return maSheetCaches;}
- NameCaches& GetNameCaches() { return maNameCaches;}
- DBCaches& GetDBCaches() { return maDBCaches;}
+ SC_DLLPUBLIC SheetCaches& GetSheetCaches();
+ SC_DLLPUBLIC const SheetCaches& GetSheetCaches() const;
+ NameCaches& GetNameCaches();
+ SC_DLLPUBLIC const NameCaches& GetNameCaches() const;
+ DBCaches& GetDBCaches();
+ SC_DLLPUBLIC const DBCaches& GetDBCaches() const;
ScRangeList GetAllTableRanges( SCTAB nTab ) const;
bool IntersectsTableByColumns( SCCOL nCol1, SCCOL nCol2, SCROW nRow, SCTAB nTab ) const;