muParserX 2.0.0
Loading...
Searching...
No Matches
listvar.cpp

This example shows how to list parser variables.

void ListVar(const mu::ParserBase &parser)
{
mu::varmap_type variables = parser.GetVar();
if (!variables.size())
return;
cout << "\nParser variables:\n";
cout << "-----------------\n";
cout << "Number: " << (int)variables.size() << "\n";
varmap_type::const_iterator item = variables.begin();
for (; item!=variables.end(); ++item)
mu::console() << _T("Name: ") << item->first << _T(" Address: [0x") << item->second << _T("]\n");
}


muParserX documentation - (C) 2010 Ingo Berg