22 lines
210 B
C++
22 lines
210 B
C++
|
|
#include "cliever-md.h"
|
|
#include "ausRegPeer.h"
|
|
|
|
|
|
bool ausRegPeer::gotIt(std::string propPath) {
|
|
|
|
bool did=false;
|
|
|
|
try {
|
|
|
|
init(propPath);
|
|
did = true;
|
|
|
|
}
|
|
catch(std::exception &e) {
|
|
|
|
}
|
|
|
|
return did;
|
|
|
|
}
|