Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5626 in orxonox.OLD for trunk/src/lib/lang/base_object.cc


Ignore:
Timestamp:
Nov 17, 2005, 12:01:45 PM (18 years ago)
Author:
bensch
Message:

trunk: optimizations, and operator== in BaseObject to compare ObjectNames

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/lang/base_object.cc

    r5513 r5626  
    137137}
    138138
     139/**
     140 * compares the ObjectName with an external name
     141 * @param objectName: the name to check.
     142 * @returns true on match, false otherwise.
     143 */
     144bool BaseObject::operator ==(const char* objectName)
     145{
     146  if (likely(this->objectName != NULL && objectName != NULL))
     147    return (strcmp(this->objectName, objectName)) ? false : true;
     148}
     149
    139150
    140151/**
Note: See TracChangeset for help on using the changeset viewer.