Changeset 1664 for code/branches/gui/src/core/Exception.h
- Timestamp:
- Aug 21, 2008, 9:23:11 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/core/Exception.h
r1663 r1664 73 73 virtual ~Exception() throw() { } 74 74 75 virtual std::stringgetFullDescription() const;75 virtual const std::string& getFullDescription() const; 76 76 virtual ExceptionType getType() const = 0; 77 77 virtual std::string getTypeName() const = 0; … … 88 88 std::string functionName_; 89 89 std::string fileName_; 90 // mutable because of "what()" is a const method 91 mutable std::string fullDescription_; 90 92 }; 91 93
Note: See TracChangeset
for help on using the changeset viewer.