Exemplo n.º 1
0
NSCAPI::errorReturn nscapi::core_wrapper::reload(std::string module) const {
	if (!fNSAPIReload)
		throw nscapi::nscapi_exception("NSCore has not been initiated...");
	return fNSAPIReload(module.c_str());
}
Exemplo n.º 2
0
bool nscapi::core_wrapper::reload(std::string module) const {
	if (!fNSAPIReload)
		throw nsclient::nsclient_exception("NSCore has not been initiated...");
	return NSCAPI::api_ok(fNSAPIReload(module.c_str()));
}