diff options
Diffstat (limited to 'project2/noOutputExecute.h')
-rw-r--r-- | project2/noOutputExecute.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/project2/noOutputExecute.h b/project2/noOutputExecute.h index fe1c638..78245f2 100644 --- a/project2/noOutputExecute.h +++ b/project2/noOutputExecute.h @@ -17,10 +17,10 @@ class NoOutputExecute : public virtual SourceObject { virtual void execute() const = 0; }; -class NOEErrorStorer : public StorerBase<NoOutputExecute> { +class NOEErrorStorer : public StorerBase<NoOutputExecute, ANONORDEREDSTORAGEOF(NoOutputExecute) > { public: NOEErrorStorer(Map m, Map em); - Map getMap(const xmlpp::Element *) const; + bool insert(const xmlpp::Element *, NoOutputExecutePtr); Map map, errorMap; }; |