Changeset 10993 for code/branches
- Timestamp:
- Dec 29, 2015, 5:18:23 PM (9 years ago)
- Location:
- code/branches/cpp11_v2/src/libraries
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/command/ConsoleCommand.cc
r10918 r10993 50 50 */ 51 51 ConsoleCommand::ConsoleCommand(const std::string& name, const ExecutorPtr& executor, bool bInitialized) 52 {53 this->init("", name, executor, bInitialized);52 : ConsoleCommand("", name, executor, bInitialized) 53 { 54 54 } 55 55 -
code/branches/cpp11_v2/src/libraries/core/object/Listable.cc
r10916 r10993 44 44 @brief Constructor: Allocates space in the element list. 45 45 */ 46 Listable::Listable() 46 Listable::Listable() : Listable(Context::getRootContext()) 47 47 { 48 this->context_ = Context::getRootContext();49 this->elements_.reserve(6);50 51 RegisterObject(Listable);52 48 } 53 49 -
code/branches/cpp11_v2/src/libraries/util/output/OutputStream.cc
r8858 r10993 41 41 @brief Default constructor, initializes level and context with default values. 42 42 */ 43 OutputStream::OutputStream() 43 OutputStream::OutputStream() : OutputStream(level::debug_output, context::undefined()) 44 44 { 45 this->setOutputAttributes(level::debug_output, context::undefined());46 45 } 47 46
Note: See TracChangeset
for help on using the changeset viewer.