Home
last modified time | relevance | path

Searched defs:XclExpScToken (Results 1 – 1 of 1) sorted by relevance

/AOO42X/main/sc/source/filter/excel/
H A Dxeformula.cxx61 struct XclExpScToken struct
63 const FormulaToken* mpScToken; // Currently processed Calc token.
64 sal_uInt8 mnSpaces; // Number of spaces before the Calc token.
66 inline explicit XclExpScToken() : mpScToken( 0 ), mnSpaces( 0 ) {} in XclExpScToken() argument
67 inline bool Is() const { return mpScToken != 0; } in Is()
68 …GetType() const { return mpScToken ? mpScToken->GetType() : static_cast< StackVar >( svUnknown ); } in GetType()
69 … GetOpCode() const { return mpScToken ? mpScToken->GetOpCode() : static_cast< OpCode >( ocNone ); } in GetOpCode()