index.html: add new file
[vss2svn.git] / ssphys / SSPhys / Command.cpp
blob329f3f17091f84aac08b310bc85326a963402e02
1 // Command.cpp: implementation of the CCommand class.
2 //
3 //////////////////////////////////////////////////////////////////////
5 #include "stdafx.h"
6 #include "Command.h"
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 ();