Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5690


Ignore:
Timestamp:
Aug 29, 2009, 10:04:43 PM (15 years ago)
Author:
rgrieder
Message:

Where the hell did those 's's come from? ;)

Location:
code/branches/resource2/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • code/branches/resource2/src/core/ConfigValueContainer.h

    r3301 r5690  
    3131    @brief Definition of the ConfigValueContainer class.
    3232
    33     The ConfigValueContainer class contains all needed informations about a configurable variable:
     33    The ConfigValueContainer class contains all needed information about a configurable variable:
    3434     - the name of the variable
    3535     - the name of the class the variable belongs to
     
    7979
    8080
    81     //! The ConfigValuecontainer contains all needed informations about a configurable variable.
     81    //! The ConfigValuecontainer contains all needed information about a configurable variable.
    8282    /**
    83         The ConfigValueContainer class contains all needed informations about a configurable variable:
     83        The ConfigValueContainer class contains all needed information about a configurable variable:
    8484         - the name of the variable
    8585         - the name of the class the variable belongs to
  • code/branches/resource2/src/core/Identifier.cc

    r3325 r5690  
    138138        if (!this->bCreatedOneObject_ && Identifier::isCreatingHierarchy())
    139139        {
    140             // If no: We have to store the informations and initialize the Identifier
     140            // If no: We have to store the information and initialize the Identifier
    141141            COUT(4) << "*** ClassIdentifier: Register Class in " << this->getName() << "-Singleton -> Initialize Singleton." << std::endl;
    142142            if (bRootClass)
  • code/branches/resource2/src/core/Identifier.h

    r3370 r5690  
    3131    @brief Definition of the Identifier, ClassIdentifier and SubclassIdentifier classes, implementation of the ClassIdentifier and SubclassIdentifier classes.
    3232
    33     The Identifier contains all needed informations about the class it belongs to:
     33    The Identifier contains all needed information about the class it belongs to:
    3434     - the name
    3535     - a list with all objects
     
    7373    // ###       Identifier        ###
    7474    // ###############################
    75     //! The Identifier is used to identify the class of an object and to store informations about the class.
    76     /**
    77         The Identifier contains all needed informations about the class it belongs to:
     75    //! The Identifier is used to identify the class of an object and to store information about the class.
     76    /**
     77        The Identifier contains all needed information about the class it belongs to:
    7878         - the name
    7979         - a list with all objects
     
    335335    /**
    336336        ClassIdentifier is a Singleton, which means that only one object of a given type T exists.
    337         This makes it possible to store informations about a class, sharing them with all
     337        This makes it possible to store information about a class, sharing them with all
    338338        objects of that class without defining static variables in every class.
    339339
  • code/branches/resource2/src/core/TclThreadManager.cc

    r3370 r5690  
    5757
    5858    /**
    59         @brief A struct containing all informations about a Tcl-interpreter
     59        @brief A struct containing all information about a Tcl-interpreter
    6060    */
    6161    struct TclInterpreterBundle
  • code/branches/resource2/src/network/ClientInformation.h

    r3304 r5690  
    4949
    5050  /**
    51   * This class implements a list for client informations
     51  * This class implements a list for client information
    5252  * @author Oliver Scheuss
    5353  */
  • code/branches/resource2/src/util/Debug.h

    r3196 r5690  
    2929/**
    3030    @file
    31     @brief Handles different output-levels of errors, warnings, infos and debug informations.
     31    @brief Handles different output-levels of errors, warnings, infos and debug information.
    3232
    3333    The COUT(level) macro acts like std::cout, but the output is only performed if the given
     
    4545     1: Errors
    4646     2: Warnings
    47      3: Informations
     47     3: Information
    4848     4: Debug information
    4949     5: More debug information
    50      6: Crazy debug informations
     50     6: Crazy debug information
    5151
    5252    @example
Note: See TracChangeset for help on using the changeset viewer.