Changeset 2257 for code/branches/objecthierarchy2/src/util
- Timestamp:
- Nov 25, 2008, 1:14:56 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy2/src/util/Exception.h
r2171 r2257 86 86 Note: Don't place this code in Exception c'tor because getTypeName() \ 87 87 is still pure virtual at that time. */ \ 88 COUT( 4) << this->getFullDescription() << std::endl; \88 COUT(1) << this->getFullDescription() << std::endl; \ 89 89 } \ 90 90 \ 91 91 ExceptionName##Exception(const std::string& description) \ 92 92 : Exception(description) \ 93 { COUT( 4) << this->getFullDescription() << std::endl; } \93 { COUT(1) << this->getFullDescription() << std::endl; } \ 94 94 \ 95 95 ~ExceptionName##Exception() throw() { } \
Note: See TracChangeset
for help on using the changeset viewer.