summaryrefslogtreecommitdiff
path: root/project2/noOutputExecute.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/noOutputExecute.h')
-rw-r--r--project2/noOutputExecute.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/project2/noOutputExecute.h b/project2/noOutputExecute.h
index 78245f2..1047f38 100644
--- a/project2/noOutputExecute.h
+++ b/project2/noOutputExecute.h
@@ -12,16 +12,10 @@ class NoOutputExecute : public virtual SourceObject {
public:
NoOutputExecute(const xmlpp::Element * p);
NoOutputExecute(const std::string & n);
- virtual ~NoOutputExecute() { }
- virtual void execute() const = 0;
-};
+ virtual ~NoOutputExecute();
-class NOEErrorStorer : public StorerBase<NoOutputExecute, ANONORDEREDSTORAGEOF(NoOutputExecute) > {
- public:
- NOEErrorStorer(Map m, Map em);
- bool insert(const xmlpp::Element *, NoOutputExecutePtr);
- Map map, errorMap;
+ virtual void execute() const = 0;
};
#endif