X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmException.cxx;h=aeb15c0b5760038f875af775b81204be4e0fe3e8;hb=1ca5d71344bd934cb05d810428cdd1182e86f9f2;hp=ef908db918687a1534b1d7e44591afa8c3092890;hpb=97179b631f44205cdb2b4e2548fcdea4f0463d11;p=gdcm.git diff --git a/src/gdcmException.cxx b/src/gdcmException.cxx index ef908db9..aeb15c0b 100644 --- a/src/gdcmException.cxx +++ b/src/gdcmException.cxx @@ -1,19 +1,12 @@ -#ifdef _MSC_VER -//'identifier' : not all control paths return a value -//#pragma warning ( disable : 4715 ) -// 'identifier' : class 'type' needs to have dll-interface to be used by -// clients of class 'type2' -#pragma warning ( disable : 4251 ) -// 'identifier' : identifier was truncated to 'number' characters in the -// debug information -#pragma warning ( disable : 4786 ) -#endif //_MSC_VER - +// gdcmException.cxx +//----------------------------------------------------------------------------- #include "gdcmException.h" #include #include +//----------------------------------------------------------------------------- +// gdcmException gdcmException::gdcmException(const std::string &f, const std::string& msg) throw() #ifdef __GNUC__ try @@ -27,7 +20,6 @@ catch(...) { #endif - void gdcmException::fatal(const char *from) throw() { try { std::cerr << "Fatal: exception received in " << from @@ -46,7 +38,6 @@ void gdcmException::fatal(const char *from) throw() { } } - std::string gdcmException::getName() const throw() { try { #ifdef __GNUC__ // GNU C++ compiler class name demangling @@ -78,12 +69,11 @@ std::string gdcmException::getName() const throw() { } } - gdcmException::operator const char *() const throw() { return getName().c_str(); } - +//----------------------------------------------------------------------------- std::ostream& operator<<(std::ostream &os, const gdcmException &e) { try { os << "Exception " << e.getName() << " thrown: " << e.getError() << std::endl; @@ -94,4 +84,4 @@ std::ostream& operator<<(std::ostream &os, const gdcmException &e) { return os; } - +//-----------------------------------------------------------------------------