Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Aug 14, 2005, 5:43:02 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: doxygen tags

File:
1 edited

Legend:

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

    r5015 r5017  
    2424  private:
    2525    ////////////////////////////////////
     26    //! a struct for Entries in the Parser's File's Sections
    2627    struct IniEntry
    2728    {
    28       char*              name;
    29       char*              value;
     29      char*              name;     //!< name of a given Entry
     30      char*              value;    //!< value of a given Entry
    3031    };
    31 
     32    //! a struct for Sections in the Parser's file
    3233    struct IniSection
    3334    {
    34       char*               name;
    35       tList<IniEntry>*    entries;
     35      char*               name;    //!< name of a given section
     36      tList<IniEntry>*    entries; //!< a list of entries for this section
    3637    };
    3738    ////////////////////////////////////
     
    6970
    7071  private:
    71     tList<IniSection>*    sections;
    72     IniSection*           currentSection;
    73     IniEntry*             currentEntry;
     72    tList<IniSection>*    sections;        //!< a list of all stored Sections of the Parser
     73    IniSection*           currentSection;  //!< the current selected Section
     74    IniEntry*             currentEntry;    //!< the current selected entry (in currentSection)
    7475};
    7576
Note: See TracChangeset for help on using the changeset viewer.