X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmException.cxx;h=2d2a9b06322be94a26534e5c7cecff1608a1a911;hb=8b0d3c6c373474dc31af9eb56cf949298a723a76;hp=d1120896d15e790ea1281e14ea66e77de07a2fb6;hpb=43cf193ac4e7395e1406e1867d76a6125c257a8b;p=gdcm.git diff --git a/src/gdcmException.cxx b/src/gdcmException.cxx index d1120896..2d2a9b06 100644 --- a/src/gdcmException.cxx +++ b/src/gdcmException.cxx @@ -8,10 +8,11 @@ //----------------------------------------------------------------------------- // gdcmException -/* +/** * \ingroup gdcmException - * \brief - * @param + * \brief constructor + * @param f + * @param msg */ gdcmException::gdcmException(const std::string &f, const std::string& msg) throw() #ifdef __GNUC__ @@ -26,10 +27,10 @@ catch(...) { #endif -/* +/** * \ingroup gdcmException - * \brief - * @param + * \brief fatal + * @param from */ void gdcmException::fatal(const char *from) throw() { try { @@ -49,10 +50,10 @@ catch(...) { } } -/* +/** * \ingroup gdcmException - * \brief - * @param + * \brief getName + * @return string */ std::string gdcmException::getName() const throw() { try { @@ -74,7 +75,7 @@ catch(...) { 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 @@ -85,20 +86,18 @@ catch(...) { } } -/* +/** * \ingroup gdcmException - * \brief - * @param + * \brief gdcmException */ gdcmException::operator const char *() const throw() { return getName().c_str(); } //----------------------------------------------------------------------------- -/* +/** * \ingroup gdcmException - * \brief - * @param + * \brief gdcmException::operator << */ std::ostream& operator<<(std::ostream &os, const gdcmException &e) { try {