#define DEFAULT_CMD_LENGTH 64


class CommandLine 
{
public:
	CommandLine( int CmdBufSize );
	AddOption( char *option );
	char * GetCmdLine( void );
private:
	char * m_pCommandLine;
	char * m_pCursor;
	int m_nCmdBufSize;
};
