source: XIOS/trunk/src/functor/once.hpp @ 400

Last change on this file since 400 was 369, checked in by ymipsl, 12 years ago

Major Update

  • redesign Type and attribute manipulation
  • add enumerate type and attribute
  • use blitz class array instead of boost class array

YM

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