- Timestamp:
- Aug 21, 2010, 9:52:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/Executor.cc
r7196 r7198 42 42 int Executor::instances_s = 0; 43 43 44 Executor::Executor( Functor*functor, const std::string& name)44 Executor::Executor(const FunctorPtr& functor, const std::string& name) 45 45 { 46 46 this->functor_ = functor; … … 51 51 Executor::~Executor() 52 52 { 53 delete this->functor_;54 53 --instances_s; COUT(0) << "executor --: " << instances_s << std::endl; 55 54 }
Note: See TracChangeset
for help on using the changeset viewer.