Enhancement

- Began detailed implementation of commands and columns objects.
This commit is contained in:
Paul Beckingham 2011-04-24 19:11:56 -04:00
parent 1c23b28514
commit 120562a7e9
9 changed files with 148 additions and 21 deletions

View file

@ -27,6 +27,7 @@
#include <iostream>
#include <Command.h>
#include <Install.h>
#include <Context.h>
extern Context context;
@ -34,11 +35,9 @@ extern Context context;
////////////////////////////////////////////////////////////////////////////////
Command* Command::factory (const std::string& name)
{
/*
if (name == "install") return new Install ();
throw std::string ("Unrecognized command '") + name + "'";
*/
return NULL;
}