source: XMLIO_V2/dev/dev_rv/src/xmlio/functor/once.hpp @ 152

Last change on this file since 152 was 152, checked in by hozdoba, 13 years ago
File size: 1.1 KB
Line 
1#ifndef __XMLIO_COnce__
2#define __XMLIO_COnce__
3
4/// xmlioserver headers ///
5#include "functor.hpp"
6
7namespace xmlioserver
8{
9   namespace func
10   {
11      /// ////////////////////// Déclarations ////////////////////// ///
12      class COnce : 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            COnce(void);                       // Not implemented.
22            COnce(DoubleArray doutput, const CFunData & data,
23                  const std::vector<size_t> size);
24            COnce(const COnce & once);         // Not implemented.
25            COnce(const COnce * const once);   // Not implemented.
26
27            /// Traitement ///
28            virtual void apply(const DoubleArray dinput, DoubleArray doutput,
29                               const std::vector<size_t> size, const CFunData & data);
30
31            /// Destructeur ///
32            virtual ~COnce(void);
33
34      }; // class COnce
35
36   } // namespace func
37} // namespace xmlioserver
38
39#endif //__XMLIO_COnce__
40
Note: See TracBrowser for help on using the repository browser.