diff options
Diffstat (limited to 'mutator_report.cpp')
-rw-r--r-- | mutator_report.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mutator_report.cpp b/mutator_report.cpp index c989d32..6086880 100644 --- a/mutator_report.cpp +++ b/mutator_report.cpp @@ -55,11 +55,11 @@ namespace Devi { Doc.InsertFirstChild(RootPointer); } - void XMLReportBase::SaveReport() + void XMLReportBase::SaveReport(const char* __filename) { Doc.InsertEndChild(RootPointer); - XMLError XMLErrorResult = Doc.SaveFile("./test/misrareport.xml"); + XMLError XMLErrorResult = Doc.SaveFile(__filename); if (XMLErrorResult != XML_SUCCESS) { |