Commands
- Implemented stubbed Context::initialize2. - Implemented combined command line. - Migrated some code from Context::initialize to ::initialize2. - Integrated ::initialize2 into the startup sequence. - Implemented Context::dispatch2. - Integrated ::dispatch2 into the run sequence. - Implemented Context::updateXtermTitle. - Added debug messages to new Command objects. - Implemented CmdLogo, which implements the _logo command, for fun. - Removed unnecessary base class overrides from Cmd* objects.
This commit is contained in:
@@ -34,14 +34,10 @@ class CmdInstall : public Command
|
||||
{
|
||||
public:
|
||||
CmdInstall ();
|
||||
CmdInstall (const CmdInstall&);
|
||||
CmdInstall& operator= (const CmdInstall&);
|
||||
bool operator== (const CmdInstall&) const; // TODO Is this necessary?
|
||||
~CmdInstall ();
|
||||
|
||||
bool read_only () const;
|
||||
bool implements (const std::string&) const;
|
||||
std::string execute (const std::string&);
|
||||
int execute (const std::string&, std::string&);
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user