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