Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 23, 2007, 7:19:07 PM (17 years ago)
Author:
landauf
Message:

changed \n to std::endl

Location:
code/branches/FICN/src/orxonox/core
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/orxonox/core/ClassFactory.h

    r673 r677  
    6767    bool ClassFactory<T>::create(const std::string& name)
    6868    {
    69         COUT(4) << "*** Create entry for " << name << " in Factory.\n";
     69        COUT(4) << "*** Create entry for " << name << " in Factory." << std::endl;
    7070        ClassIdentifier<T>::getIdentifier()->addFactory(new ClassFactory<T>);
    7171        Factory::add(name, ClassIdentifier<T>::getIdentifier());
  • code/branches/FICN/src/orxonox/core/ConfigValueContainer.cc

    r670 r677  
    5757        if (!string2Number(this->value_.value_int_, valueString, defvalue))     // Try to convert the string to a value
    5858            this->setConfigFileEntyToDefault();                                 // The conversion failed
    59 
    60         std::cout << "CVC: int: " << this->value_.value_int_ << std::endl;
    6159    }
    6260
     
    8078        if (!string2Number(this->value_.value_uint_, valueString, defvalue))    // Try to convert the string to a value
    8179            this->setConfigFileEntyToDefault();                                 // The conversion failed
    82 
    83         std::cout << "CVC: uint: " << this->value_.value_uint_ << std::endl;
    8480    }
    8581
  • code/branches/FICN/src/orxonox/core/CoreIncludes.h

    r676 r677  
    9595*/
    9696#define RegisterObject(ClassName) \
    97     COUT(4) << "*** Register Object: " << #ClassName << "\n"; \
     97    COUT(4) << "*** Register Object: " << #ClassName << std::endl; \
    9898    InternRegisterObject(ClassName, false)
    9999
     
    103103*/
    104104#define RegisterRootObject(ClassName) \
    105     COUT(4) << "*** Register Root-Object: " << #ClassName << "\n"; \
     105    COUT(4) << "*** Register Root-Object: " << #ClassName << std::endl; \
    106106    InternRegisterRootObject(ClassName)
    107107
  • code/branches/FICN/src/orxonox/core/Factory.cc

    r670 r677  
    8484    void Factory::createClassHierarchy()
    8585    {
    86         COUT(3) << "*** Factory -> Create class-hierarchy\n";
     86        COUT(3) << "*** Factory -> Create class-hierarchy" << std::endl;
    8787        std::map<std::string, Identifier*>::iterator it;
    8888        it = getFactoryPointer()->identifierStringMap_.begin();
     
    9595        }
    9696        (*getFactoryPointer()->identifierStringMap_.begin()).second->stopCreatingHierarchy();
    97         COUT(3) << "*** Factory -> Finished class-hierarchy creation\n";
     97        COUT(3) << "*** Factory -> Finished class-hierarchy creation" << std::endl;
    9898    }
    9999
  • code/branches/FICN/src/orxonox/core/Identifier.cc

    r670 r677  
    6868    void Identifier::initialize(const IdentifierList* parents)
    6969    {
    70         COUT(4) << "*** Initialize " << this->name_ << "-Singleton.\n";
     70        COUT(4) << "*** Initialize " << this->name_ << "-Singleton." << std::endl;
    7171        this->bCreatedOneObject_ = true;
    7272
     
    9797        {
    9898            // 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;
    101101            abort();
    102102            return NULL;
  • code/branches/FICN/src/orxonox/core/Identifier.h

    r673 r677  
    117117            {
    118118                hierarchyCreatingCounter_s++;
    119                 COUT(4) << "*** Increased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << "\n";
     119                COUT(4) << "*** Increased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl;
    120120            }
    121121
     
    126126            {
    127127                hierarchyCreatingCounter_s--;
    128                 COUT(4) << "*** Decreased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << "\n";
     128                COUT(4) << "*** Decreased Hierarchy-Creating-Counter to " << hierarchyCreatingCounter_s << std::endl;
    129129            }
    130130
     
    201201    ClassIdentifier<T>* ClassIdentifier<T>::registerClass(const IdentifierList* parents, const std::string& name, bool bRootClass)
    202202    {
    203         COUT(4) << "*** Register Class in " << name << "-Singleton.\n";
     203        COUT(4) << "*** Register Class in " << name << "-Singleton." << std::endl;
    204204
    205205        // It's a singleton, so maybe we have to create it first
    206206        if (!pointer_s)
    207207        {
    208             COUT(4) << "*** Register Class in " << name << "-Singleton -> Create Singleton.\n";
     208            COUT(4) << "*** Register Class in " << name << "-Singleton -> Create Singleton." << std::endl;
    209209            pointer_s = new ClassIdentifier();
    210210        }
     
    214214        {
    215215            // If no: We have to store the informations and initialize the Identifier
    216 
    217             COUT(4) << "*** Register Class in " << name << "-Singleton -> Initialize Singleton.\n";
     216            COUT(4) << "*** Register Class in " << name << "-Singleton -> Initialize Singleton." << std::endl;
    218217            pointer_s->name_ = name;
    219 //            Factory::add(name, pointer_s); // Add the Identifier to the Factory
    220 
    221218            if (bRootClass)
    222219                pointer_s->initialize(NULL); // If a class is derived from two interfaces, the second interface might think it's derived from the first because of the order of constructor-calls. Thats why we set parents to zero in that case.
     
    236233        if (!pointer_s)
    237234        {
    238             COUT(4) << "*** Create Singleton.\n";
     235            COUT(4) << "*** Create Singleton." << std::endl;
    239236            pointer_s = new ClassIdentifier();
    240237        }
     
    250247    void ClassIdentifier<T>::addObject(T* object)
    251248    {
    252         COUT(4) << "*** Added object to " << ClassIdentifier<T>::getIdentifier()->getName() << "-list.\n";
     249        COUT(4) << "*** Added object to " << ClassIdentifier<T>::getIdentifier()->getName() << "-list." << std::endl;
    253250        object->getMetaList().add(ClassIdentifier<T>::getIdentifier()->objects_, ClassIdentifier<T>::getIdentifier()->objects_->add(object));
    254251    }
     
    285282                if (!identifier->isA(ClassIdentifier<T>::getIdentifier()))
    286283                {
    287                     COUT(1) << "Error: Class " << identifier->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!\n";
    288                     COUT(1) << "Error: SubclassIdentifier<" << ClassIdentifier<T>::getIdentifier()->getName() << "> = Class(" << identifier->getName() << ") is forbidden.\n";
    289                     COUT(1) << "Aborting...\n";
     284                    COUT(1) << "Error: Class " << identifier->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!" << std::endl;
     285                    COUT(1) << "Error: SubclassIdentifier<" << ClassIdentifier<T>::getIdentifier()->getName() << "> = Class(" << identifier->getName() << ") is forbidden." << std::endl;
     286                    COUT(1) << "Aborting..." << std::endl;
    290287                    abort();
    291288                }
     
    331328                    if (this->identifier_)
    332329                    {
    333                         COUT(1) << "Error: Class " << this->identifier_->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!\n";
    334                         COUT(1) << "Error: Couldn't fabricate a new Object.\n";
    335                         COUT(1) << "Aborting...\n";
     330                        COUT(1) << "Error: Class " << this->identifier_->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!" << std::endl;
     331                        COUT(1) << "Error: Couldn't fabricate a new Object." << std::endl;
     332                        COUT(1) << "Aborting..." << std::endl;
    336333                    }
    337334                    else
    338335                    {
    339                         COUT(1) << "Error: Couldn't fabricate a new Object - Identifier is undefined.\n";
    340                         COUT(1) << "Aborting...\n";
     336                        COUT(1) << "Error: Couldn't fabricate a new Object - Identifier is undefined." << std::endl;
     337                        COUT(1) << "Aborting..." << std::endl;
    341338                    }
    342339
  • code/branches/FICN/src/orxonox/core/Iterator.h

    r673 r677  
    151151                // Comparing with anything except zero makes no sense
    152152                if (compare != 0)
    153                     COUT(2) << "Warning: Comparing the " << ClassIdentifier<T>::getIdentifier()->getName() << "-List-Iterator with " << compare << " has no effect. Only comparison with 0 works.\n";
     153                    COUT(2) << "Warning: Comparing the " << ClassIdentifier<T>::getIdentifier()->getName() << "-List-Iterator with " << compare << " has no effect. Only comparison with 0 works." << std::endl;
    154154
    155155                return (this->element_ != 0);
  • code/branches/FICN/src/orxonox/core/MetaObjectList.h

    r673 r677  
    7070
    7171
    72         COUT(4) << "*** Removing Object from " << ClassIdentifier<T>::getIdentifier()->getName() << "-list.\n";
     72        COUT(4) << "*** Removing Object from " << ClassIdentifier<T>::getIdentifier()->getName() << "-list." << std::endl;
    7373        delete this->element_;
    7474    }
Note: See TracChangeset for help on using the changeset viewer.