Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4482 in orxonox.OLD


Ignore:
Timestamp:
Jun 2, 2005, 5:16:08 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: lib/util: doxy-tags

Location:
orxonox/trunk/src/lib/util
Files:
2 edited

Legend:

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

    r4028 r4482  
    1313#include <stdlib.h>
    1414
    15 #define PARSELINELENGHT 512
     15#define PARSELINELENGHT     512       //!< how many chars to read at once
    1616
    1717//! ini-file parser
     
    2020*/
    2121class IniParser {
    22  private:
    23         FILE* stream;
    24         bool bInSection;
    25         char internbuf[PARSELINELENGHT];
    26        
    2722 public:
    2823  IniParser (const char* filename);
     
    3328  int getSection( char* section);
    3429  int nextVar( char* name, char* value);
     30
     31 private:
     32  FILE*         stream;                       //!< A FileStream to be loaded
     33  bool          bInSection;                   //!< if the requested parameter is in the section.
     34  char          internbuf[PARSELINELENGHT];   //!< a buffer
     35       
     36
    3537};
    3638
  • orxonox/trunk/src/lib/util/substring.h

    r4220 r4482  
    77#define _SUBSTRING_H
    88
     9//! A class that can load one string and split it in multipe ones
    910class SubString
    1011{
    1112 public:
    12        
    13   SubString( const char* string);
     13  SubString(const char* string);
    1414  ~SubString();
    1515               
     
    1818               
    1919 private:
    20   char** strings;
    21   int n;
     20  char**     strings;         //!< strings produced from a single string splitted in multiple strings
     21  int        n;               //!< how many splitted parts
    2222};
    2323
Note: See TracChangeset for help on using the changeset viewer.