From 657650f18b4b18d188f1e96dc9f0e6ca347a040a Mon Sep 17 00:00:00 2001 From: randomdan Date: Mon, 28 Feb 2011 20:57:46 +0000 Subject: Add missing implementation of noOutputExecute.cpp --- project2/noOutputExecute.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 project2/noOutputExecute.cpp diff --git a/project2/noOutputExecute.cpp b/project2/noOutputExecute.cpp new file mode 100644 index 0000000..7608329 --- /dev/null +++ b/project2/noOutputExecute.cpp @@ -0,0 +1,14 @@ +#include "noOutputExecute.h" + +NoOutputExecute::NoOutputExecute(const xmlpp::Element * p) : + SourceObject(p), + isErrorHandler(p->get_attribute_value("onerror") == "true") +{ +} + +NoOutputExecute::NoOutputExecute(const std::string & n) : + SourceObject(n), + isErrorHandler(false) +{ +} + -- cgit v1.2.3