Searched defs:CellPos (Results 1 – 2 of 2) sorted by relevance
68 struct CellPos struct70 sal_Int32 mnCol;71 sal_Int32 mnRow;73 CellPos() : mnCol( 0 ), mnRow( 0 ) {} in CellPos() argument74 CellPos( sal_Int32 nCol, sal_Int32 nRow ) { mnCol = nCol; mnRow = nRow; } in CellPos() function76 bool operator==( const CellPos& r ) const { return (r.mnCol == mnCol) && (r.mnRow == mnRow); } in operator ==()77 bool operator!=( const CellPos& r ) const { return (r.mnCol != mnCol) || (r.mnRow != mnRow); } in operator !=()
607 struct CellPos struct609 CellPos():m_nRow(-1), m_nCol(-1), m_nArea(0) {}; in CellPos() function610 …CellPos( sal_Int32 nRow, sal_Int32 nCol, sal_Int32 nArea ):m_nRow(nRow), m_nCol(nCol), m_nArea( nA… in CellPos() function617 typedef ::std::vector< CellPos > vCellPos; argument
Completed in 59 milliseconds