]> Creatis software - gdcm.git/blobdiff - src/gdcmException.cxx
reintroduce testing
[gdcm.git] / src / gdcmException.cxx
index aeb15c0b5760038f875af775b81204be4e0fe3e8..2d2a9b06322be94a26534e5c7cecff1608a1a911 100644 (file)
@@ -7,6 +7,13 @@
 
 //-----------------------------------------------------------------------------
 // gdcmException
+
+/**
+ * \ingroup gdcmException
+ * \brief constructor
+ * @param f
+ * @param msg  
+ */
 gdcmException::gdcmException(const std::string &f, const std::string& msg) throw()
 #ifdef __GNUC__
   try
@@ -20,7 +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;
@@ -38,7 +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;
@@ -58,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
@@ -69,12 +86,20 @@ 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;
   }