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/core/Exception.h

    r1663 r1664  
    7373        virtual ~Exception() throw() { }
    7474
    75         virtual std::string        getFullDescription() const;
     75        virtual const std::string& getFullDescription() const;
    7676        virtual ExceptionType      getType()            const = 0;
    7777        virtual std::string        getTypeName()        const = 0;
     
    8888        std::string functionName_;
    8989        std::string fileName_;
     90        // mutable because of "what()" is a const method
     91        mutable std::string fullDescription_;
    9092    };
    9193
Note: See TracChangeset for help on using the changeset viewer.