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