21 lines
198 B
C++
21 lines
198 B
C++
|
|
#include "cliever-md.h"
|
|
|
|
|
|
bool ausRegEPPTK::didInit(const std::string propPath) {
|
|
|
|
bool did=false;;
|
|
|
|
try {
|
|
|
|
init( propPath );
|
|
did = true;
|
|
|
|
}
|
|
catch(std::exception &e) {
|
|
|
|
}
|
|
|
|
return did;
|
|
|
|
}
|