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