Parser Integration

- New parser integrated and functioning, but only shadows the A3 parser.  In
  debug mode, there is new output, but that's all that happenѕ.
This commit is contained in:
Paul Beckingham 2013-09-01 14:14:15 -04:00
parent 9ee17a5b51
commit 314d0e9d01
4 changed files with 26 additions and 2 deletions

View file

@ -50,7 +50,7 @@ A3t::~A3t ()
}
////////////////////////////////////////////////////////////////////////////////
void A3t::initialize (int argc, char** argv)
void A3t::initialize (int argc, const char** argv)
{
for (int i = 0; i < argc; ++i)
{

View file

@ -36,7 +36,7 @@ class A3t
public:
A3t ();
~A3t ();
void initialize (int, char**);
void initialize (int, const char**);
Tree* parse ();
void entity (const std::string&, const std::string&);
bool canonicalize (std::string&, const std::string&, const std::string&) const;