]> Creatis software - gdcm.git/blobdiff - src/gdcmException.h
STYLE: Fix some comment also rework the include stuff
[gdcm.git] / src / gdcmException.h
index b1875b5880a8840c0b8bbcd2660aabff9916f6fc..425ad6b9dfe32182dcf607da8fd568e7899e5306 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmException.h,v $
   Language:  C++
-  Date:      $Date: 2004/11/04 18:14:34 $
-  Version:   $Revision: 1.18 $
+  Date:      $Date: 2005/01/11 15:15:38 $
+  Version:   $Revision: 1.21 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 #define GDCM_EXCEPTION_H
 
 #include "gdcmCommon.h"
+
 #include <string>
 #include <iostream>
 #include <exception>
+
 namespace gdcm 
 {
 
 //-----------------------------------------------------------------------------
-/*
- * Any exception thrown in the gdcm library
+/**
+ * \brief Any exception thrown in the gdcm library
  */
 class GDCM_EXPORT Exception : public std::exception
 {
@@ -67,7 +69,7 @@ public:
    /// returns exception name string
    operator const char *() const throw();
 
-   friend std::ostreamoperator<<(std::ostream &os, const Exception &e);
+   friend std::ostream &operator<<(std::ostream &os, const Exception &e);
 
 protected:
    /// error message part 1
@@ -78,8 +80,8 @@ protected:
 
 
 //-----------------------------------------------------------------------------
-/*
- * File error exception thrown in the gdcm library
+/**
+ * \brief File error exception thrown in the gdcm library
  */
 class GDCM_EXPORT FileError : public Exception
 {