------------------------------------------------------------------------------ \brief Clear all user defined constants. Both numeric and string constants will be removed from the internal storage. \post Resets the parser to string parsing mode. \throw nothrow */
| 1638 | \throw nothrow |
| 1639 | */ |
| 1640 | void ParserBase::ClearConst() |
| 1641 | { |
| 1642 | m_ConstDef.clear(); |
| 1643 | m_StrVarDef.clear(); |
| 1644 | ReInit(); |
| 1645 | } |
| 1646 | |
| 1647 | //------------------------------------------------------------------------------ |
| 1648 | /** \brief Clear all user defined postfix operators. |