- Implemented the shell of E9::eval.
- Stubbed out operator_xxx helper methods.
This commit is contained in:
Paul Beckingham 2011-07-25 22:59:47 -04:00
parent b1048ddfa3
commit 83c0ea6ab2
5 changed files with 298 additions and 20 deletions

View file

@ -37,6 +37,12 @@
class Arg
{
public:
Arg ()
: _raw ("")
, _category ("")
{
}
Arg (
const std::string& raw,
const std::string& category)