Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 21, 2008, 9:23:11 PM (16 years ago)
Author:
rgrieder
Message:
  • Finished CommandLineArgument completely. You can also use SetCommandLineSwitch to define boolean switches.
  • Added StaticConversion to Covert.h (compile time type conversion checking)
  • Fixed a bug in Exception
  • Added getAllStrings() to SubString
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/util/SubString.h

    r1505 r1664  
    131131  /** @brief Returns the i'th string from the subset of Strings @param i the i'th String */
    132132  inline const std::string& getString(unsigned int i) const { return (*this)[i]; };
     133  /** @brief Returns all Strings as std::vector */
     134  inline const std::vector<std::string>& getAllStrings() const { return this->strings; }
    133135  /** @brief Returns true if the token is in safemode. @param i the i'th token */
    134136  inline bool isInSafemode(unsigned int i) const { return this->bInSafemode[i]; }
Note: See TracChangeset for help on using the changeset viewer.