]> Creatis software - gdcm.git/blobdiff - src/gdcmOrientation.h
Add comment
[gdcm.git] / src / gdcmOrientation.h
index a43c6e17cbef5a7db17521d21859542f4befda49..3ff59156862ce9680376741ac051076d183c7800 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmOrientation.h,v $
   Language:  C++
-  Date:      $Date: 2005/07/24 02:34:42 $
-  Version:   $Revision: 1.1 $
+  Date:      $Date: 2005/09/05 08:25:01 $
+  Version:   $Revision: 1.6 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -20,6 +20,7 @@
 #define GDCMORIENTATION_H
 
 #include "gdcmBase.h"
+#include <map>
 
 namespace gdcm 
 {
@@ -35,21 +36,21 @@ class File;
 
 //-----------------------------------------------------------------------------
 /**
- * \brief Orientation class for dealing with DICOM image orienation
+ * \brief Orientation class for dealing with DICOM image orientation
  */
 class GDCM_EXPORT Orientation : public Base
 {
 public:
-  Orientation();
-  ~Orientation();
+  Orientation() {}
+  ~Orientation() {}
 
-   double TypeOrientation( File* file );
+  double TypeOrientation( File *file );
 
 private:
-   Res VerfCriterion(int typeCriterion, double criterionNew, Res const & res);
-   double CalculLikelyhood2Vec(vector3D const & refA, vector3D const & refB, 
-                               vector3D const & ori1, vector3D const & ori2);
-   vector3D ProductVectorial(vector3D const & vec1, vector3D const & vec2);
+   Res VerfCriterion(int typeCriterion, double criterionNew, Res const &res);
+   double CalculLikelyhood2Vec(vector3D const &refA, vector3D const &refB, 
+                               vector3D const &ori1, vector3D const &ori2);
+   vector3D ProductVectorial(vector3D const &vec1, vector3D const &vec2);
 };
 } // end namespace gdcm
 //-----------------------------------------------------------------------------