Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5015 in orxonox.OLD for orxonox/trunk/src/lib/gui/gui_exec.h


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

orxonox/trunk: robust IniParser

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/gui/gui_exec.h

    r4746 r5015  
    2828  struct VarInfo
    2929  {
    30     char* variableName;        //!< The Name of this variable;
    31     char* variableValue;      //!< The Value this variable gets.
     30    const char* variableName;  //!< The Name of this variable;
     31    const char* variableValue; //!< The Value this variable gets.
    3232  };
    3333
     
    3535  GuiExec();
    3636  ~GuiExec();
    37  
     37
    3838  void setConfDir(const char* confDir);
    3939  void setConfFile(const char* confFile);
     
    4444  void readFromFile(Widget* widget);
    4545  static void readFileText(Widget* widget, void* varInfo);
    46   Widget* locateGroup(Widget* widget, char* groupName, int depth);
     46  Widget* locateGroup(Widget* widget, const char* groupName, int depth);
    4747
    4848#ifdef HAVE_GTK2
     
    5555};
    5656
    57 //! A simple hashtable 
     57//! A simple hashtable
    5858struct HashTable
    5959{
Note: See TracChangeset for help on using the changeset viewer.