diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-11-06 19:15:11 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-03-14 15:35:47 -0400 |
commit | ea33d30c4782fb7ea2aa4fd798f77be49f362e00 (patch) | |
tree | 03c56ed7bc046014c3857e892217ff90907ca6d2 /sc/inc/column.hxx | |
parent | 7238505762a9198d92b108c794b43452191c5174 (diff) |
Let's start using impl class for ScColumn.
No need to migrate the existing data members to it for now, but let's
define new members in the impl class from now on.
Change-Id: Idee66dae87beb4bb6efc9c7d7ffd658148ed887c
Diffstat (limited to 'sc/inc/column.hxx')
-rw-r--r-- | sc/inc/column.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/inc/column.hxx b/sc/inc/column.hxx index 8653bfdbaa32..39f9753880b5 100644 --- a/sc/inc/column.hxx +++ b/sc/inc/column.hxx @@ -58,6 +58,7 @@ struct ScMergePatternState; class ScFlatBoolRowSegments; struct ScSetStringParam; struct ScColWidthParam; +struct ScColumnImpl; struct ScNeededSizeOptions { @@ -79,6 +80,8 @@ struct ColEntry class ScColumn { private: + ScColumnImpl* mpImpl; + SCCOL nCol; SCTAB nTab; |