Skip to content
Snippets Groups Projects
ParseCommandLine.cpp 243 B
Newer Older
#include "ParseCommandLine.h"
AcceptedKeys ParseCommandLine::s_validKeys = ACCEPTED_KEYS;

void ParseCommandLine::dumpErrors()
{
	for (int i = 0; i < _errors.size(); i++)
	{
		ERROR_MSG_SUP("ParseCommandLine", _errors[i], _errorMsgs[i]);
	}
}