]> Creatis software - gdcm.git/blobdiff - src/gdcmException.cxx
ENH: Remove redundancie about GDCM_DICT stuff, now we only need to modify
[gdcm.git] / src / gdcmException.cxx
index d1120896d15e790ea1281e14ea66e77de07a2fb6..2d2a9b06322be94a26534e5c7cecff1608a1a911 100644 (file)
@@ -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 {