1 // Command.cpp: implementation of the CCommand class.
3 //////////////////////////////////////////////////////////////////////
8 //////////////////////////////////////////////////////////////////////
9 // Construction/Destruction
10 //////////////////////////////////////////////////////////////////////
12 CCommand::CCommand (std::string commandName
)
13 : m_CommandName (commandName
)
17 CCommand::~CCommand ()
21 void CCommand::PrintUsage () const
23 std::cout
<< GetCommandName() << ":" << std::endl
;
24 COptions::PrintUsage ();