summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/excrecds.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/excrecds.hxx')
-rw-r--r--sc/source/filter/inc/excrecds.hxx38
1 files changed, 22 insertions, 16 deletions
diff --git a/sc/source/filter/inc/excrecds.hxx b/sc/source/filter/inc/excrecds.hxx
index 40e98930d758..63c169e11eec 100644
--- a/sc/source/filter/inc/excrecds.hxx
+++ b/sc/source/filter/inc/excrecds.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: excrecds.hxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: dr $ $Date: 2001-04-19 09:57:26 $
+ * last change: $Author: dr $ $Date: 2001-05-10 17:26:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -942,20 +942,6 @@ public:
};
-//--------------------------------------------------------- class ExcDummy_03 -
-// sheet record: SELECTION
-
-class ExcDummy_03 : public ExcDummyRec
-{
-private:
- static const BYTE pMyData[];
- static const ULONG nMyLen;
-public:
- virtual ULONG GetLen( void ) const;
- virtual const BYTE* GetData( void ) const;
-};
-
-
//------------------------------------------------------- class ExcDimensions -
class ExcDimensions : public ExcRecord
@@ -1402,6 +1388,26 @@ public:
};
+//-------------------------------------------------------- class ExcSelection -
+
+class ExcSelection : public ExcRecord
+{
+private:
+ UINT16 nCol;
+ UINT16 nRow;
+ UINT8 nPane;
+
+ virtual void SaveCont( XclExpStream& rStrm );
+
+public:
+ inline ExcSelection( UINT16 _nCol, UINT16 _nRow, UINT8 _nPane ) :
+ nCol( _nCol ), nRow( _nRow ), nPane( _nPane ) {}
+
+ virtual UINT16 GetNum( void ) const;
+ virtual ULONG GetLen( void ) const;
+};
+
+
//------------------------------------------------------------ class UsedList -
class UsedList : public List, public ExcEmptyRec