]> Creatis software - clitk.git/blob - common/clitkListOfPair.h
Initial revision
[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 namespace clitk {
17   
18   //====================================================================
19   template<class MapType>
20   void ReadMap(const std::string & filename, MapType & list, bool inverse=false);
21   
22   //====================================================================
23   double convertValue(double v, 
24                                           const std::multimap<double, double> & conversionTable, 
25                                           bool linear);
26   
27 #include "clitkListOfPair.txx"
28
29 } // end namespace
30
31 #endif /* end #define CLITKLISTOFPAIR_H */
32