source: XIOS/trunk/src/functor/minimum.hpp @ 439

Last change on this file since 439 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: 1.0 KB
Line 
1#ifndef __XMLIO_CMinimum__
2#define __XMLIO_CMinimum__
3
4/// xmlioserver headers ///
5#include "functor.hpp"
6#include "array_new.hpp"
7
8namespace xios
9{
10   namespace func
11   {
12      /// ////////////////////// Déclarations ////////////////////// ///
13      class CMinimum : public CFunctor
14      {
15         /// Définition de type ///
16         typedef CFunctor SuperClass;
17
18         public :
19
20            /// Constructeurs ///
21            //CMinimum(void);                             // Not implemented.
22            //CMinimum(const CFunData & data);
23            CMinimum(CArray<double,1>& doutput);
24            //CMinimum(const CMinimum & Minimum);         // Not implemented.
25            //CMinimum(const CMinimum * const Minimum);   // Not implemented.
26
27            /// Traitement ///
28            virtual void apply(const CArray<double,1>& dinput, CArray<double,1>& doutput);
29
30            /// Destructeur ///
31            virtual ~CMinimum(void);
32
33      }; // class CMinimum
34
35   } // namespace func
36} // namespace xmlioserver
37
38#endif //__XMLIO_CMinimum__
Note: See TracBrowser for help on using the repository browser.