DRDE/AusRegCliever/server/mdAusReg.cpp

19 lines
301 B
C++
Raw Normal View History

#include "cliever-md.h"
2014-01-07 17:59:27 +00:00
2014-01-08 05:00:04 +00:00
bool ausRegEPPTK::didInit(const std::string propPath) {
2014-01-07 17:59:27 +00:00
2014-01-10 20:05:42 +00:00
bool did=false;
2014-01-07 17:59:27 +00:00
2014-01-10 20:05:42 +00:00
try {
scenario( tkScenario );
did = true;
}
catch(std::exception &e) {
2014-01-10 22:01:44 +00:00
theseLogs->logN(2,"Scenario %d TK Exception: %s .",tkScenario,e.what());
2014-01-10 20:05:42 +00:00
}
2014-01-10 22:01:44 +00:00
return did;
2014-01-07 17:59:27 +00:00
}