- Updated comments, docs.
This commit is contained in:
Paul Beckingham 2014-04-21 16:04:18 -04:00
parent 3e5dc56773
commit e82cffe8ac
3 changed files with 4 additions and 5 deletions

View file

@ -24,7 +24,7 @@
//
////////////////////////////////////////////////////////////////////////////////
#include <iostream> // TODO Remove.
//#include <iostream>
#include <cmake.h>
#include <sstream>
#include <stdlib.h>

View file

@ -66,7 +66,6 @@
#include <CmdIDs.h>
#include <CmdImport.h>
#include <CmdInfo.h>
//#include <CmdInstall.h>
#include <CmdLog.h>
#include <CmdLogo.h>
#include <CmdModify.h>
@ -139,7 +138,6 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdIDs (); all[c->keyword ()] = c;
c = new CmdImport (); all[c->keyword ()] = c;
c = new CmdInfo (); all[c->keyword ()] = c;
// c = new CmdInstall (); all[c->keyword ()] = c;
c = new CmdLog (); all[c->keyword ()] = c;
c = new CmdLogo (); all[c->keyword ()] = c;
c = new CmdModify (); all[c->keyword ()] = c;