diff options
Diffstat (limited to 'project2/noOutputExecute.h')
-rw-r--r-- | project2/noOutputExecute.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/project2/noOutputExecute.h b/project2/noOutputExecute.h index 3e92aba..9c476eb 100644 --- a/project2/noOutputExecute.h +++ b/project2/noOutputExecute.h @@ -6,15 +6,15 @@ class ApplicationEngine; class PerRowValues; -class _NoOutputExecute; -typedef boost::intrusive_ptr<_NoOutputExecute> NoOutputExecute; -typedef std::map<unsigned int, NoOutputExecute> NoOutputExecutes; +class NoOutputExecute; +typedef boost::intrusive_ptr<NoOutputExecute> NoOutputExecutePtr; +typedef std::map<unsigned int, NoOutputExecutePtr> NoOutputExecutes; -class _NoOutputExecute : public virtual _SourceObject { +class NoOutputExecute : public virtual SourceObject { public: - _NoOutputExecute(const xmlpp::Element * p) : _SourceObject(p) { }; - _NoOutputExecute(const std::string & n) : _SourceObject(n) { }; - virtual ~_NoOutputExecute() { } + NoOutputExecute(const xmlpp::Element * p) : SourceObject(p) { }; + NoOutputExecute(const std::string & n) : SourceObject(n) { }; + virtual ~NoOutputExecute() { } virtual void execute() const = 0; }; |