Commands - _query

- Migrated handleQuery to CmdQuery.
This commit is contained in:
Paul Beckingham
2011-05-30 13:00:51 -04:00
parent 75e651626d
commit 4603bdb509
8 changed files with 129 additions and 44 deletions

View File

@@ -51,6 +51,7 @@
#include <CmdLogo.h>
#include <CmdPrepend.h>
#include <CmdProjects.h>
#include <CmdQuery.h>
#include <CmdReports.h>
#include <CmdShell.h>
#include <CmdShow.h>
@@ -103,6 +104,7 @@ void Command::factory (std::map <std::string, Command*>& all)
c = new CmdLogo (); all[c->keyword ()] = c;
c = new CmdPrepend (); all[c->keyword ()] = c;
c = new CmdProjects (); all[c->keyword ()] = c;
c = new CmdQuery (); all[c->keyword ()] = c;
c = new CmdReports (); all[c->keyword ()] = c;
c = new CmdShell (); all[c->keyword ()] = c;
c = new CmdShow (); all[c->keyword ()] = c;