- Eliminated the Command::implements method.
- Implemented CmdCustom to handle all custom reports.
- Implemented CmdTags.
This commit is contained in:
Paul Beckingham 2011-05-24 19:25:33 -04:00
parent 31e865e823
commit bedc28f517
18 changed files with 575 additions and 129 deletions

View file

@ -34,12 +34,7 @@ class CmdExec : public Command
{
public:
CmdExec ();
bool implements (const std::string&);
int execute (const std::string&, std::string&);
private:
std::string _external_command;
};
#endif