source: XMLIO_V2/dev/dev_rv/src/functor/instant.hpp @ 141

Last change on this file since 141 was 141, checked in by hozdoba, 13 years ago

Mise à jour depuis un autre dépôt

File size: 1.2 KB
Line 
1#ifndef __XMLIO_CInstant__
2#define __XMLIO_CInstant__
3
4/// xmlioserver headers ///
5#include "functor.hpp"
6
7namespace xmlioserver
8{
9   namespace func
10   {
11      /// ////////////////////// Déclarations ////////////////////// ///
12      class CInstant : public CFunctor
13      {
14         /// Définition de type ///
15         typedef CFunctor SuperClass;
16         typedef ARRAY(double, 1) DoubleArray;
17
18         public :
19
20            /// Constructeurs ///
21            CInstant(void);                             // Not implemented.
22            CInstant(const CFunData & data);
23            CInstant(DoubleArray doutput, const CFunData & data,
24                     const std::vector<size_t> size);
25            CInstant(const CInstant & instant);         // Not implemented.
26            CInstant(const CInstant * const instant);   // Not implemented.
27
28            /// Traitement ///
29            virtual void apply(const DoubleArray dinput, DoubleArray doutput,
30                               const std::vector<size_t> size, const CFunData & data);
31
32            /// Destructeur ///
33            virtual ~CInstant(void);
34
35      }; // class CInstant
36
37   } // namespace func
38} // namespace xmlioserver
39
40#endif //__XMLIO_CInstant__
Note: See TracBrowser for help on using the repository browser.