Version: 6.3.1

src/DSC/DSC_User/Datastream/AdjacentPredicate.hxx

Go to the documentation of this file.
00001 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
00002 //
00003 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
00004 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
00005 //
00006 // This library is free software; you can redistribute it and/or
00007 // modify it under the terms of the GNU Lesser General Public
00008 // License as published by the Free Software Foundation; either
00009 // version 2.1 of the License.
00010 //
00011 // This library is distributed in the hope that it will be useful,
00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014 // Lesser General Public License for more details.
00015 //
00016 // You should have received a copy of the GNU Lesser General Public
00017 // License along with this library; if not, write to the Free Software
00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
00019 //
00020 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
00021 //
00022 
00023 //  File   : AdjacentPredicate.hxx
00024 //  Author : Eric Fayolle (EDF)
00025 //  Module : KERNEL
00026 // Modified by : $LastChangedBy$
00027 // Date        : $LastChangedDate: 2007-01-08 19:01:14 +0100 (lun, 08 jan 2007) $
00028 // Id          : $Id: AdjacentPredicate.hxx,v 1.3.2.1.10.1.6.1 2011-06-01 13:51:41 vsr Exp $
00029 //
00030 #ifndef __ADJACENT_PREDICATE__
00031 #define __ADJACENT_PREDICATE__
00032 
00033 #include <functional>
00034 #include <utility>
00035 #include "DisplayPair.hxx"
00036 
00037 template < typename T >
00038 struct AdjacentPredicate : public std::binary_function < T, T, bool > 
00039 {
00040   T _value;
00041   AdjacentPredicate(const T& value):_value(value){}
00042   bool operator()(const T &v1, const T& v2) const {
00043     return (v1 <= _value ) && (_value < v2) ;
00044   }
00045 };
00046 
00047 // Pour les MAPs avec une clef sous forme de pair
00048 template <typename T1, typename T2, typename T3>
00049 struct AdjacentPredicate<  std::pair<const std::pair<T1,T2>, T3 > > : 
00050   public std::binary_function < std::pair<const std::pair<T1,T2>, T3 >,
00051                                 std::pair<const std::pair<T1,T2>, T3 >, bool > 
00052 {
00053   std::pair<T1,T2> _value;
00054   AdjacentPredicate(const std::pair<T1,T2> & value):_value(value){
00055     std::cout << "1-Initializing with value " << _value << std::endl;
00056   }
00057   bool operator()( const std::pair<const std::pair<T1,T2>, T3 > & v1,  
00058                    const std::pair<const std::pair<T1,T2>, T3 > v2) const {
00059     std::cout << "1-> :" << v1 << "," << v2 << " " << std::endl;
00060     return (v1.first <= _value ) && (_value < v2.first) ;
00061   }
00062 };
00063 
00064 template <typename T1, typename T2>
00065 struct AdjacentPredicate<  std::pair<T1,T2> > : public std::binary_function < std::pair<T1,T2>, std::pair<T1,T2>, bool > 
00066 {
00067   T1 _value;
00068   AdjacentPredicate(const T1 & value):_value(value){
00069     std::cout << "2-Initializing with value " << _value << std::endl;
00070   }
00071   bool operator()( const std::pair<T1,T2> & v1,  const std::pair<T1,T2>& v2) const {
00072     std::cout << "2-> :" << &(v1.first) << "," << &(v2.first) << " " << std::endl;
00073     return (v1.first <= _value ) && (_value < v2.first) ;
00074   }
00075 };
00076 
00077 #endif
Copyright © 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
Copyright © 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS