Changeset 4063 in orxonox.OLD for orxonox/branches/md2_loader/src/lib/util/ini_parser.cc
- Timestamp:
- May 5, 2005, 2:37:08 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/md2_loader/src/lib/util/ini_parser.cc
r3484 r4063 23 23 \param filename: the path and name of the file to parse 24 24 */ 25 IniParser::IniParser (c har* filename)25 IniParser::IniParser (const char* filename) 26 26 { 27 27 stream = NULL; … … 43 43 \return zero on success or -1 if an error occured; 44 44 */ 45 int IniParser::openFile( char* filename)45 int IniParser::openFile(const char* filename) 46 46 { 47 47 if( filename == NULL) return -1; … … 144 144 lead to unwanted behaviour. 145 145 */ 146 char* IniParser::getVar( char* name, char* section, char* defvalue = "")146 char* IniParser::getVar(const char* name, char* section, char* defvalue = "") 147 147 { 148 148 strcpy (internbuf, defvalue);
Note: See TracChangeset
for help on using the changeset viewer.