Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/kernel.git] / src / DSC / DSC_User / Datastream / AdjacentPredicate.hxx
1 //  Copyright (C) 2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //
21 //
22 //  File   : AdjacentPredicate.hxx
23 //  Author : Eric Fayolle (EDF)
24 //  Module : KERNEL
25 // Modified by : $LastChangedBy$
26 // Date        : $LastChangedDate: 2007-01-08 19:01:14 +0100 (lun, 08 jan 2007) $
27 // Id          : $Id$
28
29 #ifndef __ADJACENT_PREDICATE__
30 #define __ADJACENT_PREDICATE__
31
32 #include <functional>
33 #include <utility>
34 #include "DisplayPair.hxx"
35
36 template < typename T >
37 struct AdjacentPredicate : public std::binary_function < T, T, bool > 
38 {
39   T _value;
40   AdjacentPredicate(const T& value):_value(value){}
41   bool operator()(const T &v1, const T& v2) const {
42     return (v1 <= _value ) && (_value < v2) ;
43   }
44 };
45
46 // Pour les MAPs avec une clef sous forme de pair
47 template <typename T1, typename T2, typename T3>
48 struct AdjacentPredicate<  std::pair<const std::pair<T1,T2>, T3 > > : 
49   public std::binary_function < std::pair<const std::pair<T1,T2>, T3 >,
50                                 std::pair<const std::pair<T1,T2>, T3 >, bool > 
51 {
52   std::pair<T1,T2> _value;
53   AdjacentPredicate(const std::pair<T1,T2> & value):_value(value){
54     std::cout << "1-Initializing with value " << _value << std::endl;
55   }
56   bool operator()( const std::pair<const std::pair<T1,T2>, T3 > & v1,  
57                    const std::pair<const std::pair<T1,T2>, T3 > v2) const {
58     std::cout << "1-> :" << v1 << "," << v2 << " " << std::endl;
59     return (v1.first <= _value ) && (_value < v2.first) ;
60   }
61 };
62
63 template <typename T1, typename T2>
64 struct AdjacentPredicate<  std::pair<T1,T2> > : public std::binary_function < std::pair<T1,T2>, std::pair<T1,T2>, bool > 
65 {
66   T1 _value;
67   AdjacentPredicate(const T1 & value):_value(value){
68     std::cout << "2-Initializing with value " << _value << std::endl;
69   }
70   bool operator()( const std::pair<T1,T2> & v1,  const std::pair<T1,T2>& v2) const {
71     std::cout << "2-> :" << &(v1.first) << "," << &(v2.first) << " " << std::endl;
72     return (v1.first <= _value ) && (_value < v2.first) ;
73   }
74 };
75
76 #endif