X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmException.cxx;h=2d2a9b06322be94a26534e5c7cecff1608a1a911;hb=cecf8a0bb86a9b3223a9d02d1106a564aa6ef7f9;hp=d3120b94130f1d8556aa722ac68bccf131812b7d;hpb=33033b2d83bdb78f53162753b9d05a5f9885eae9;p=gdcm.git diff --git a/src/gdcmException.cxx b/src/gdcmException.cxx index d3120b94..2d2a9b06 100644 --- a/src/gdcmException.cxx +++ b/src/gdcmException.cxx @@ -1,19 +1,19 @@ -#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 + +/** + * \ingroup gdcmException + * \brief constructor + * @param f + * @param msg + */ gdcmException::gdcmException(const std::string &f, const std::string& msg) throw() #ifdef __GNUC__ try @@ -27,8 +27,12 @@ catch(...) { #endif - -void gdcmException::fatal(const char *from) throw() { +/** + * \ingroup gdcmException + * \brief fatal + * @param from + */ + void gdcmException::fatal(const char *from) throw() { try { std::cerr << "Fatal: exception received in " << from << " while handling exception." << std::endl; @@ -46,8 +50,12 @@ void gdcmException::fatal(const char *from) throw() { } } - -std::string gdcmException::getName() const throw() { +/** + * \ingroup gdcmException + * \brief getName + * @return string + */ + std::string gdcmException::getName() const throw() { try { #ifdef __GNUC__ // GNU C++ compiler class name demangling unsigned int nested = 1, i, nb, offset; @@ -67,7 +75,7 @@ std::string gdcmException::getName() const throw() { iname = std::string(iname, nb, std::string::npos); } return name; -#else // no class name demangling +#else // no class name demangling //name = typeid(*this).name(); return "Exception"; #endif @@ -78,20 +86,27 @@ std::string gdcmException::getName() const throw() { } } - -gdcmException::operator const char *() const throw() { +/** + * \ingroup gdcmException + * \brief gdcmException + */ + gdcmException::operator const char *() const throw() { return getName().c_str(); } - -std::ostream& operator<<(std::ostream &os, const gdcmException &e) { +//----------------------------------------------------------------------------- +/** + * \ingroup gdcmException + * \brief gdcmException::operator << + */ + std::ostream& operator<<(std::ostream &os, const gdcmException &e) { try { os << "Exception " << e.getName() << " thrown: " << e.getError() << std::endl; } catch(...) { - gdcmException::fatal("operator<<(ostream &, const gdcmException&)"); + gdcmException::fatal("operator<<(std::ostream &, const gdcmException&)"); } return os; } - +//-----------------------------------------------------------------------------