Salome HOME
Ajout des properties
[modules/kernel.git] / src / DSC / DSC_User / Datastream / ProcessTimeIntervalTraits.hxx
1 //  Copyright (C) 2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //
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