18 lines
301 B
C++
18 lines
301 B
C++
|
|
#include "cliever-md.h"
|
|
|
|
|
|
bool ausRegEPPTK::didInit(const std::string propPath) {
|
|
|
|
bool did=false;
|
|
|
|
try {
|
|
scenario( tkScenario );
|
|
did = true;
|
|
}
|
|
catch(std::exception &e) {
|
|
theseLogs->logN(2,"Scenario %d TK Exception: %s .",tkScenario,e.what());
|
|
}
|
|
return did;
|
|
|
|
}
|