diff options
Diffstat (limited to 'include/oox/dump/dumperbase.hxx')
-rw-r--r-- | include/oox/dump/dumperbase.hxx | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/include/oox/dump/dumperbase.hxx b/include/oox/dump/dumperbase.hxx index 3fe5512c81cb..0f274356b834 100644 --- a/include/oox/dump/dumperbase.hxx +++ b/include/oox/dump/dumperbase.hxx @@ -251,46 +251,6 @@ struct ItemFormat -struct Address -{ - sal_Int32 mnCol; - sal_Int32 mnRow; - Address() : mnCol( 0 ), mnRow( 0 ) {} - explicit Address( sal_Int32 nCol, sal_Int32 nRow ) : mnCol( nCol ), mnRow( nRow ) {} -}; - - - -struct Range -{ - Address maFirst; - Address maLast; - Range() {} -}; - - - -typedef ::std::vector< Range > RangeList; - - - -struct TokenAddress : public Address -{ - bool mbRelCol; - bool mbRelRow; - TokenAddress() : mbRelCol( false ), mbRelRow( false ) {} -}; - - - -struct TokenRange -{ - TokenAddress maFirst; - TokenAddress maLast; - TokenRange() {} -}; - - /** Static helper functions for formatted output to strings. */ |