Salome HOME
CCAR: change in check_calcium.m4 macro for --with-cal-int=<intorlong>
[modules/kernel.git] / src / DSC / DSC_User / Datastream / ProcessTimeIntervalTraits.hxx
1 //  Copyright (C) 2007-2008  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.
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 //  File   : ProcessTimeIntervalTraits.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 _PROCESS_TIME_INTERVAL_TRAIT_HXX_
30 #define _PROCESS_TIME_INTERVAL_TRAIT_HXX_
31
32 #include "IteratorTraits.hxx"
33
34 // Par défaut les classes définissant un mode de couplage n'implémentent pas
35 // de traitement particulier pour une de demande de données identifiées à partir
36 // d'un dataId non reçu mais encadré par deux dataIds
37 // Ce trait peut être spécialisé pour la classe de couplage pour effectuer
38 // le traitement de son choix
39 template <class WhatEver > struct ProcessTimeIntervalTraits {
40     
41   template < typename Iterator > 
42   std::pair<bool, typename iterator_t<Iterator>::value_type > 
43   static inline apply(typename WhatEver::DataId dataId, Iterator it1) {
44     typedef typename iterator_t<Iterator>::value_type value_type; 
45     return std::make_pair<bool,value_type> (0,0);
46   }
47 };
48
49 // class CalciumCoulpingPolicy;
50 // template < typename Iterator > 
51 // typename iterator_t<Iterator>::value_type
52 // CalciumCoulpingPolicy::processTimeInterval (DataId & dataId,
53 //                                          Iterator  & it1, Iterator  & it2);
54 #include "CalciumCouplingPolicy.hxx" 
55 template <> struct ProcessTimeIntervalTraits<CalciumCouplingPolicy> {
56     
57   template < class Iterator > 
58   std::pair<bool,typename iterator_t<Iterator>::value_type> 
59   static inline apply(CalciumCouplingPolicy::DataId dataId, Iterator it1) {
60
61     Iterator it2=it1; it2++;
62
63     typedef typename iterator_t<Iterator>::value_type value_type; 
64     return std::make_pair<bool,value_type> (1,processTimeInterval(dataId,it1,it2));
65   }
66 };
67
68 #endif