My Project
range.h
Go to the documentation of this file.
1 /* range.h
2  */
3 #ifndef _RANGE_H
4 #define _RANGE_H
5 #include <utility>
6 namespace osl
7 {
8  namespace rating
9  {
10  typedef std::pair<int,int> range_t;
11  }
12 }
13 
14 #endif /* _RANGE_H */
15 // ;;; Local Variables:
16 // ;;; mode:c++
17 // ;;; c-basic-offset:2
18 // ;;; End:
std::pair< int, int > range_t
Definition: range.h:10