diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-09-12 21:15:10 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-09-12 21:18:02 -0400 |
commit | c86b1a5c352df806166fc674fb3b85d334e4cb55 (patch) | |
tree | 56c724cfd23d18e0132d2b8fc2e9230548e883db /sc/inc/mtvelements.hxx | |
parent | 14a25b343d98d7a4ebf9b6c03b09d1882c71d0b1 (diff) |
Change so that we won't have to include mtvelements.hxx in cellvalue.hxx.
Because mtvelements.hxx is very slow to parse by the compiler, and
cellvalue.hxx is included everywhere. Hopefully this will speed up the
compilation time of sc...
Change-Id: Ic9a9b8483c8325e4a91021f071f2391db8b57806
Diffstat (limited to 'sc/inc/mtvelements.hxx')
-rw-r--r-- | sc/inc/mtvelements.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/inc/mtvelements.hxx b/sc/inc/mtvelements.hxx index 46a5d409e4d9..f0e5fff7dc9d 100644 --- a/sc/inc/mtvelements.hxx +++ b/sc/inc/mtvelements.hxx @@ -31,6 +31,7 @@ #include <boost/unordered_map.hpp> class ScDocument; +struct ScRefCellValue; namespace sc { @@ -133,6 +134,8 @@ public: ColumnBlockPosition* getBlockPosition(SCTAB nTab, SCCOL nCol); }; +ScRefCellValue toRefCell( const sc::CellStoreType::const_iterator& itPos, size_t nOffset ); + } #endif |