- Added call to A3t::getFilterExpression, for testing.
This commit is contained in:
Paul Beckingham 2014-04-21 16:25:09 -04:00
parent 997bdbdb90
commit 45bd916a1a

View file

@ -155,6 +155,11 @@ int main (int argc, const char** argv)
Tree* tree = a3t.parse (); Tree* tree = a3t.parse ();
if (tree) if (tree)
std::cout << tree->dump (); std::cout << tree->dump ();
std::cout << "\n"
<< " Filter: "
<< a3t.getFilterExpression ()
<< "\n";
} }
catch (const std::string& error) catch (const std::string& error)