]> Creatis software - gdcm.git/blobdiff - src/gdcmException.cxx
* ENH : remove cout
[gdcm.git] / src / gdcmException.cxx
index ef908db918687a1534b1d7e44591afa8c3092890..d1120896d15e790ea1281e14ea66e77de07a2fb6 100644 (file)
@@ -1,19 +1,18 @@
-#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 <typeinfo>
 #include <stdio.h>
 
+//-----------------------------------------------------------------------------
+// gdcmException
+
+/*
+ * \ingroup gdcmException
+ * \brief 
+ * @param   
+ */
 gdcmException::gdcmException(const std::string &f, const std::string& msg) throw()
 #ifdef __GNUC__
   try
@@ -27,8 +26,12 @@ catch(...) {
 #endif
 
 
-
-void gdcmException::fatal(const char *from) throw() {
+/*
+ * \ingroup gdcmException
+ * \brief 
+ * @param   
+ */
+ void gdcmException::fatal(const char *from) throw() {
   try {
     std::cerr << "Fatal: exception received in " << from 
         << " while handling exception." << std::endl;
@@ -46,8 +49,12 @@ void gdcmException::fatal(const char *from) throw() {
   }  
 }
 
-
-std::string gdcmException::getName() const throw() {
+/*
+ * \ingroup gdcmException
+ * \brief 
+ * @param   
+ */
+ std::string gdcmException::getName() const throw() {
   try {
 #ifdef __GNUC__   // GNU C++ compiler class name demangling
       unsigned int nested = 1, i, nb, offset;
@@ -78,13 +85,22 @@ std::string gdcmException::getName() const throw() {
   }
 }
 
-
-gdcmException::operator const char *() const throw() {
+/*
+ * \ingroup gdcmException
+ * \brief 
+ * @param   
+ */
+ gdcmException::operator const char *() const throw() {
   return getName().c_str();
 }
 
-
-std::ostream& operator<<(std::ostream &os, const gdcmException &e) {
+//-----------------------------------------------------------------------------
+/*
+ * \ingroup gdcmException
+ * \brief 
+ * @param   
+ */
+ std::ostream& operator<<(std::ostream &os, const gdcmException &e) {
   try {  
     os << "Exception " << e.getName() << " thrown: " << e.getError() << std::endl;
   }
@@ -94,4 +110,4 @@ std::ostream& operator<<(std::ostream &os, const gdcmException &e) {
   return os;
 }
 
-  
+//-----------------------------------------------------------------------------