summaryrefslogtreecommitdiff
path: root/project2/noOutputExecute.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/noOutputExecute.h')
-rw-r--r--project2/noOutputExecute.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/project2/noOutputExecute.h b/project2/noOutputExecute.h
index 87c17a7..fe1c638 100644
--- a/project2/noOutputExecute.h
+++ b/project2/noOutputExecute.h
@@ -17,11 +17,10 @@ class NoOutputExecute : public virtual SourceObject {
virtual void execute() const = 0;
};
-class NOEErrorStorer : public Storer {
+class NOEErrorStorer : public StorerBase<NoOutputExecute> {
public:
- typedef Storage<NoOutputExecute>::ObjectsPtr Map;
NOEErrorStorer(Map m, Map em);
- bool save(SourceObjectPtr obj, const xmlpp::Element *) const;
+ Map getMap(const xmlpp::Element *) const;
Map map, errorMap;
};