Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 598


Ignore:
Timestamp:
Dec 17, 2007, 9:56:37 PM (16 years ago)
Author:
bknecht
Message:

mandatory boolean changed to optional in argreader

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/orxonox/core/ArgReader.h

    r543 r598  
    1616    public:
    1717      ArgReader(int argc, char **argv);
    18       void checkArgument(std::string option, std::string& string, bool must);
    19       void checkArgument(std::string option, int& integer, bool must);
    20       void checkArgument(std::string option, float& floating, bool must);
     18      void checkArgument(std::string option, std::string& string, bool must=false);
     19      void checkArgument(std::string option, int& integer, bool must=false);
     20      void checkArgument(std::string option, float& floating, bool must=false);
    2121      bool errorHandling();
    2222    private:
Note: See TracChangeset for help on using the changeset viewer.