aboutsummaryrefslogtreecommitdiffstats
path: root/mutator_report.h
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2017-05-23 11:46:49 +0000
committerbloodstalker <thabogre@gmail.com>2017-05-23 11:46:49 +0000
commit886f344694057f864fd211f285d48921348bfe1d (patch)
tree28c4f99e0776e27cf1b05dfa798a96327bd57096 /mutator_report.h
parentnothing (diff)
downloadmutator-886f344694057f864fd211f285d48921348bfe1d.tar.gz
mutator-886f344694057f864fd211f285d48921348bfe1d.zip
added xml report classes, there is a problem with a tinyxml2 assert being triggered on inheritance while the same problem doesnt exist when you dont inherit, raised an issue, until that gets sorted out, the report classes are one-offs, took me 2 days
Diffstat (limited to 'mutator_report.h')
-rw-r--r--mutator_report.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mutator_report.h b/mutator_report.h
index e6b1936..ee8041b 100644
--- a/mutator_report.h
+++ b/mutator_report.h
@@ -47,9 +47,9 @@ namespace Devi {
virtual void AddNode(void) = 0;
- void SaveReport(void);
+ void SaveReport(const char*);
- private:
+ protected:
XMLDocument Doc;
XMLElement* RootPointer;
};