]> Creatis software - clitk.git/blobdiff - common/clitkListOfPair.txx
Reformatted using new coding style
[clitk.git] / common / clitkListOfPair.txx
index 5e3a84369349f927362cd267566c0473eb87285c..5c9a1334c027648d42cca153db301ebcac81d496 100644 (file)
@@ -1,7 +1,7 @@
 /*=========================================================================
   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
 
-  Authors belong to: 
+  Authors belong to:
   - University of LYON              http://www.universite-lyon.fr/
   - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
  * @file   clitkListOfPair.txx
  * @author David Sarrut <david.sarrut@creatis.insa-lyon.fr>
  * @date   27 Feb 2007 09:44:48
- * 
- * @brief  
- * 
- * 
+ *
+ * @brief
+ *
+ *
  =================================================*/
 
 //====================================================================
 template<class MapType>
-void ReadMap(const std::string & filename, MapType & list, bool inverse) {
+void ReadMap(const std::string & filename, MapType & list, bool inverse)
+{
   std::ifstream is;
   clitk::openFileForReading(is, filename);
   clitk::skipComment(is);
@@ -39,13 +40,13 @@ void ReadMap(const std::string & filename, MapType & list, bool inverse) {
   typedef typename MapType::mapped_type MType;
   MType v2;
   while (is) {
-       is >> v1;
-       is >> v2;
-       if (is) {
-         if (!inverse) list.insert(std::pair<KType, MType>(v1,v2));
-         else list.insert(std::pair<KType, MType>(v2,v1));       
-       }
-       clitk::skipComment(is);
+    is >> v1;
+    is >> v2;
+    if (is) {
+      if (!inverse) list.insert(std::pair<KType, MType>(v1,v2));
+      else list.insert(std::pair<KType, MType>(v2,v1));
+    }
+    clitk::skipComment(is);
   }
   is.close();
 }