Version: 9.16.0
AdjacentPredicate.hxx
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, 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
37template < typename T >
38struct AdjacentPredicate : public std::binary_function < T, T, bool >
39{
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
48template <typename T1, typename T2, typename T3>
49struct 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
64template <typename T1, typename T2>
65struct AdjacentPredicate< std::pair<T1,T2> > : public std::binary_function < std::pair<T1,T2>, std::pair<T1,T2>, bool >
66{
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
bool operator()(const std::pair< T1, T2 > &v1, const std::pair< T1, T2 > &v2) const
Definition: AdjacentPredicate.hxx:71
T1 _value
Definition: AdjacentPredicate.hxx:67
AdjacentPredicate(const T1 &value)
Definition: AdjacentPredicate.hxx:68
std::pair< T1, T2 > _value
Definition: AdjacentPredicate.hxx:53
AdjacentPredicate(const std::pair< T1, T2 > &value)
Definition: AdjacentPredicate.hxx:54
bool operator()(const std::pair< const std::pair< T1, T2 >, T3 > &v1, const std::pair< const std::pair< T1, T2 >, T3 > v2) const
Definition: AdjacentPredicate.hxx:57
Definition: AdjacentPredicate.hxx:39
bool operator()(const T &v1, const T &v2) const
Definition: AdjacentPredicate.hxx:42
T _value
Definition: AdjacentPredicate.hxx:40
AdjacentPredicate(const T &value)
Definition: AdjacentPredicate.hxx:41