diff options
Diffstat (limited to 'project2/noOutputExecute.h')
-rw-r--r-- | project2/noOutputExecute.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/project2/noOutputExecute.h b/project2/noOutputExecute.h index ec73ce1..f47c118 100644 --- a/project2/noOutputExecute.h +++ b/project2/noOutputExecute.h @@ -11,10 +11,13 @@ typedef boost::intrusive_ptr<NoOutputExecute> NoOutputExecutePtr; class NoOutputExecute : public virtual SourceObject { public: - NoOutputExecute(const xmlpp::Element * p) : SourceObject(p) { }; - NoOutputExecute(const std::string & n) : SourceObject(n) { }; + NoOutputExecute(const xmlpp::Element * p); + NoOutputExecute(const std::string & n); virtual ~NoOutputExecute() { } + virtual void execute() const = 0; + + const bool isErrorHandler; }; #endif |