Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5935 in orxonox.OLD for trunk/src/lib/util/ini_parser.h


Ignore:
Timestamp:
Dec 6, 2005, 1:38:55 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: ini-parser works again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/util/ini_parser.h

    r5934 r5935  
    6363    bool nextVar();
    6464
    65     /** @returns the name of the Current selected Section */
    66     const char* getCurrentSection() const { return (this->currentSection!=NULL)?this->currentSection->name:NULL; };
    67     /** @returns the current entries Name, or NULL if we havn't selected a Entry */
    68     const char* getCurrentName() const { return (this->currentEntry!=NULL)?this->currentEntry->name:NULL; };
    69     /** @returns the current entries Value, or NULL if we havn't selected a Entry */
    70     const char* getCurrentValue() const { return (this->currentEntry!=NULL)?this->currentEntry->value:NULL; };
     65    const char* getCurrentSection() const;
     66    const char* getCurrentName() const;
     67    const char* getCurrentValue() const;
    7168
    7269    void debug() const;
Note: See TracChangeset for help on using the changeset viewer.