kspread_types.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 typedef Column unsigned long int;
00013 typedef Row unsigned long int;
00014
00015
00016 class Coordinate
00017 {
00018 public:
00019 Coordinate( Row, Column );
00020
00021 Row row() const { return m_iRow; }
00022 Column column() const { return m_iColumn; }
00023
00024 private:
00025 Row m_iRow;
00026 Column m_iColumn;
00027 };
00028
00029
00030 class Selection
00031 {
00032 public:
00033 Selection( Coordinate, Coordinate );
00034
00035 Coordinate begin() const { return m_crdBegin; }
00036 Coordinate end() const { return m_crdEnd; }
00037
00038 private:
00039 Coordinate m_crdBegin;
00040 Coordinate m_crdEnd;
00041 };
00042
This file is part of the documentation for kspread Library Version 1.4.2.