summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xetable.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/xetable.hxx')
-rw-r--r--sc/source/filter/inc/xetable.hxx40
1 files changed, 0 insertions, 40 deletions
diff --git a/sc/source/filter/inc/xetable.hxx b/sc/source/filter/inc/xetable.hxx
index a5173d4a41d0..06146cfe28a6 100644
--- a/sc/source/filter/inc/xetable.hxx
+++ b/sc/source/filter/inc/xetable.hxx
@@ -126,8 +126,6 @@ private:
typedef boost::shared_ptr< XclExpArray > XclExpArrayRef;
-
-
/** Caches all ARRAY records. */
class XclExpArrayBuffer : protected XclExpRoot
{
@@ -177,8 +175,6 @@ private:
typedef boost::shared_ptr< XclExpShrfmla > XclExpShrfmlaRef;
-
-
/** Caches all SHRFMLA records and provides functions to update their ranges. */
class XclExpShrfmlaBuffer : protected XclExpRoot
{
@@ -252,8 +248,6 @@ private:
typedef boost::shared_ptr< XclExpTableop > XclExpTableopRef;
-
-
/** Contains all created TABLEOP records and supports creating or updating them. */
class XclExpTableopBuffer : protected XclExpRoot
{
@@ -370,8 +364,6 @@ private:
sal_Size mnContSize; /// The size of the cell contents.
};
-
-
/** Represents a NUMBER record that describes a cell with a double value. */
class XclExpNumberCell : public XclExpSingleCellBase
{
@@ -390,8 +382,6 @@ private:
double mfValue; /// The cell value.
};
-
-
/** Represents a BOOLERR record that describes a cell with a Boolean value. */
class XclExpBooleanCell : public XclExpSingleCellBase
{
@@ -451,8 +441,6 @@ private:
bool mbLineBreak; /// True = cell has automatic linebreaks enabled.
};
-
-
class ScFormulaCell;
/** Represents a FORMULA record that describes a cell with a formula. */
@@ -492,8 +480,6 @@ struct XclExpMultiXFId : public XclExpXFId
XclExpXFId( nXFId ), mnCount( nCount ) {}
};
-
-
/** Base class for all cell records supporting multiple contents. */
class XclExpMultiCellBase : public XclExpCellBase
{
@@ -554,8 +540,6 @@ private:
XclExpMultiXFIdDeq maXFIds; /// The XF identifiers of the cell formatting.
};
-
-
/** Represents a BLANK or MULBLANK record that describes empty but formatted cells. */
class XclExpBlankCell : public XclExpMultiCellBase
{
@@ -581,8 +565,6 @@ private:
virtual void WriteXmlContents( XclExpXmlStream& rStrm, const XclAddress& rAddress, sal_uInt32 nXFId, sal_uInt16 nRelCol ) SAL_OVERRIDE;
};
-
-
/** Represents an RK or MULRK record that describes cells with a compressed double values. */
class XclExpRkCell : public XclExpMultiCellBase
{
@@ -644,8 +626,6 @@ private:
bool mbCurrCollapse; /// true = Collapsed group ends at current position.
};
-
-
/** The outline buffer for column outlines. */
class XclExpColOutlineBuffer : public XclExpOutlineBuffer
{
@@ -658,8 +638,6 @@ public:
{ UpdateColRow( static_cast< SCCOLROW >( nScCol ) ); }
};
-
-
/** The outline buffer for row outlines. */
class XclExpRowOutlineBuffer : public XclExpOutlineBuffer
{
@@ -672,8 +650,6 @@ public:
{ UpdateColRow( static_cast< SCCOLROW >( nScRow ) ); }
};
-
-
/** Represents a GUTS record containing the level count of row and column outlines. */
class XclExpGuts : public XclExpRecord
{
@@ -690,8 +666,6 @@ private:
sal_uInt16 mnRowWidth; /// Width of row outline area (pixels).
};
-
-
/** Represents a DIMENSIONS record containing the used area of a sheet. */
class XclExpDimensions : public XclExpRecord
{
@@ -715,8 +689,6 @@ private:
sal_uInt16 mnFirstFreeXclCol; /// First free column after used area.
};
-
-
/** Represents the DEFCOLWIDTH record containing the default column width of a sheet.
Excel stores the default column width in entire character widths of the '0'
@@ -741,8 +713,6 @@ public:
void SetDefWidth( sal_uInt16 nXclColWidth );
};
-
-
/** Contains the column settings for a range of columns.
After construction the record contains a temporary XF identifier returned
@@ -790,8 +760,6 @@ private:
sal_uInt16 mnLastXclCol; /// Index to last column.
};
-
-
/** Contains COLINFO records for all columns of a Calc sheet.
On construction one COLINFO record per column is created. After creating
@@ -824,8 +792,6 @@ private:
XclExpColOutlineBuffer maOutlineBfr; /// Buffer for column outline groups.
};
-
-
class XclExpRow;
/** Contains all possible default row settings. */
@@ -843,8 +809,6 @@ struct XclExpDefaultRowData
inline bool IsUnsynced() const { return ::get_flag( mnFlags, EXC_DEFROW_UNSYNCED ); }
};
-
-
/** Represents a DEFROWHEIGHT record containing default format for unused rows. */
class XclExpDefrowheight : public XclExpRecord
{
@@ -862,8 +826,6 @@ private:
XclExpDefaultRowData maDefData; /// Record data.
};
-
-
/** Represents a ROW record and additionally contains all cells records of a row.
This class contains all cell records of a row in a spreadsheet. There are 2
@@ -953,8 +915,6 @@ private:
bool mbEnabled; /// true = Write this ROW record.
};
-
-
/** Collects all rows which contain all cells of a sheet.
This row buffer automatically creates ROW records when cells are inserted