本文整理匯總了C++中Nibbler::checkArg方法的典型用法代碼示例。如果您正苦於以下問題:C++ Nibbler::checkArg方法的具體用法?C++ Nibbler::checkArg怎麽用?C++ Nibbler::checkArg使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Nibbler
的用法示例。
在下文中一共展示了Nibbler::checkArg方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。
示例1: myException
int main(int ac, char **av)
{
void *handle;
IGui *(*ext_ctor)();
Nibbler nibbler;
try
{
if (ac != 4)
throw myException((GamePart)42, "Usage: ./nibbler width height libXXX.so");
handle = dlopen(av[3], RTLD_LAZY);
if (!handle)
throw Nibbler::nibblerException(NIBBLER, dlerror(), DLERROR);
ext_ctor = reinterpret_cast<IGui* (*)()>(dlsym(handle, "create"));
if (!ext_ctor)
throw Nibbler::nibblerException(NIBBLER, dlerror(), DLERROR);
if (!nibbler.checkArg(av[1]) || !nibbler.checkArg(av[2]))
throw Nibbler::nibblerException(NIBBLER, "Bad map values", BADARG);
nibbler.setGui(ext_ctor);
nibbler.execNibbler(nibbler.getnbr(av[1]), nibbler.getnbr(av[2]));
nibbler.deleteGui();
nibbler.getCore()->printEndgame();
if (dlclose(handle) != 0)
throw Nibbler::nibblerException(NIBBLER, dlerror(), DLERROR);
}
catch (myException const &ex)
{
nibbler.deleteGui();
std::cerr << ex.where() << " : " << ex.what() << std::endl;
return (1);
}
return (0);
}