- Timestamp:
- Aug 30, 2010, 11:21:15 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/command/Executor.cc
r7270 r7274 46 46 } 47 47 48 Executor::Executor(const Executor& other) : name_(other.name_) , defaultValue_(other.defaultValue_)48 Executor::Executor(const Executor& other) : name_(other.name_) 49 49 { 50 for (int i = 0; i < MAX_FUNCTOR_ARGUMENTS; ++i) 51 defaultValue_[i] = other.defaultValue_[i]; 50 52 this->functor_ = other.functor_->clone(); 51 53 }
Note: See TracChangeset
for help on using the changeset viewer.