Changeset 677 for code/branches/FICN/src/orxonox/core/Identifier.cc
- Timestamp:
- Dec 23, 2007, 7:19:07 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/core/Identifier.cc
r670 r677 68 68 void Identifier::initialize(const IdentifierList* parents) 69 69 { 70 COUT(4) << "*** Initialize " << this->name_ << "-Singleton. \n";70 COUT(4) << "*** Initialize " << this->name_ << "-Singleton." << std::endl; 71 71 this->bCreatedOneObject_ = true; 72 72 … … 97 97 { 98 98 // Abstract classes don't have a factory and therefore can't create new objects 99 COUT(1) << "Error: Cannot create an object of type '" << this->name_ << "'. Class is abstract. \n";100 COUT(1) << "Aborting..." ;99 COUT(1) << "Error: Cannot create an object of type '" << this->name_ << "'. Class is abstract." << std::endl; 100 COUT(1) << "Aborting..." << std::endl; 101 101 abort(); 102 102 return NULL;
Note: See TracChangeset
for help on using the changeset viewer.