]> Creatis software - clitk.git/blob - common/clitkListOfPair.h
removed headers
[clitk.git] / common / clitkListOfPair.h
1 #ifndef CLITKLISTOFPAIR_H
2 #define CLITKLISTOFPAIR_H
3 /**
4    ===================================================================
5    * @file   clitkListOfPair.h
6    * @author David Sarrut <David.Sarrut@creatis.insa-lyon.fr>
7    * @date   27 Feb 2007 09:44:18
8
9    * @brief  
10
11    ===================================================================*/
12
13 #include "clitkCommon.h"
14
15 #include <fstream>
16
17 namespace clitk {
18   
19   //====================================================================
20   template<class MapType>
21   void ReadMap(const std::string & filename, MapType & list, bool inverse=false);
22   
23   //====================================================================
24   double convertValue(double v, 
25                       const std::multimap<double, double> & conversionTable, 
26                       bool linear);
27   
28 #include "clitkListOfPair.txx"
29
30 } // end namespace
31
32 #endif /* end #define CLITKLISTOFPAIR_H */
33