DRDE/AusRegCliever/server/mdAusReg.cpp

22 lines
198 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-08 05:00:04 +00:00
bool did=false;;
2014-01-07 17:59:27 +00:00
try {
2014-01-08 05:00:04 +00:00
init( propPath );
2014-01-07 17:59:27 +00:00
did = true;
}
catch(std::exception &e) {
}
return did;
}