diff options
| author | bloodstalker <thabogre@gmail.com> | 2017-04-27 20:35:47 +0000 | 
|---|---|---|
| committer | bloodstalker <thabogre@gmail.com> | 2017-04-27 20:35:47 +0000 | 
| commit | b9d97252db56dbcad8578c91cdacfae3bde73b09 (patch) | |
| tree | 6443da50abb1ceb33464a7ed329224672ba40942 | |
| parent | fixed a typo, took out some stuff from the todo list that are already done. (diff) | |
| download | mutator-b9d97252db56dbcad8578c91cdacfae3bde73b09.tar.gz mutator-b9d97252db56dbcad8578c91cdacfae3bde73b09.zip | |
fixes
| -rw-r--r-- | bruiser/bruiser.h | 14 | 
1 files changed, 13 insertions, 1 deletions
| diff --git a/bruiser/bruiser.h b/bruiser/bruiser.h index 4147353..384b441 100644 --- a/bruiser/bruiser.h +++ b/bruiser/bruiser.h @@ -93,7 +93,19 @@ class TypeInfo  class ReadM0  {    public: -    ReadM0() {} +    ReadM0()  +    { +      try +      { +      XMLError eResult = IntermediateXMLDoc.LoadFile(M0REP); + +      RootPointer = IntermediateXMLDoc.FirstChild(); +      } +      catch (std::exception& e) +      { + +      } +    }      ~ReadM0() {} | 
