summaryrefslogtreecommitdiffstats
path: root/sc/inc/dpobject.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-02-28 21:27:41 -0500
committerKohei Yoshida <kyoshida@novell.com>2011-02-28 21:27:41 -0500
commite7db4c4fdc5d969f59ebee8a6b7848a9dc733c71 (patch)
treeccc3c0f443b143e74a3f1bec1c0e9d61efc28707 /sc/inc/dpobject.hxx
parentRemove cache ID storage from ScDPSaveData. (diff)
downloadcore-e7db4c4fdc5d969f59ebee8a6b7848a9dc733c71.tar.gz
core-e7db4c4fdc5d969f59ebee8a6b7848a9dc733c71.zip
Data cache is now stored in the cashe table object for now.
With this commit, data caches are no longer stored outside the cache table and managed by their ID's. Each cache table stores and manages its own data "cache", but then calling it a cache is a mis-nomer.
Diffstat (limited to 'sc/inc/dpobject.hxx')
-rw-r--r--sc/inc/dpobject.hxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/sc/inc/dpobject.hxx b/sc/inc/dpobject.hxx
index 443f4b29bd0f..8cf4661e4f2b 100644
--- a/sc/inc/dpobject.hxx
+++ b/sc/inc/dpobject.hxx
@@ -123,9 +123,6 @@ private:
public:
inline void SetRefresh() { bRefresh = TRUE; }
- long GetCacheId() const;
- void SetCacheId( long nCacheId );
- ULONG RefreshCache();
ScDPObject( ScDocument* pD );
ScDPObject(const ScDPObject& r);
~ScDPObject();
@@ -307,16 +304,6 @@ public:
SC_DLLPUBLIC bool InsertNewTable(ScDPObject* pDPObj);
bool HasDPTable(SCCOL nCol, SCROW nRow, SCTAB nTab) const;
-
- ScDPTableDataCache* GetDPObjectCache( long nID );
- ScDPTableDataCache* GetUsedDPObjectCache ( const ScRange& rRange );
- long AddDPObjectCache( ScDPTableDataCache* pData );
- void RemoveDPObjectCache( long nID );
-
- /**
- * Get an available, unique ID value for datapilot data cache.
- */
- long GetNewDPObjectCacheId ();
};