New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
instant.hpp in vendors/XIOS/current/src/functor – NEMO

source: vendors/XIOS/current/src/functor/instant.hpp @ 3428

Last change on this file since 3428 was 3428, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

File size: 1.0 KB
Line 
1#ifndef __XMLIO_CInstant__
2#define __XMLIO_CInstant__
3
4/// xios headers ///
5#include "functor.hpp"
6
7namespace xios
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);
24            //CInstant(const CInstant & instant);         // Not implemented.
25            //CInstant(const CInstant * const instant);   // Not implemented.
26
27            /// Traitement ///
28            virtual void apply(const DoubleArray dinput, DoubleArray doutput);
29
30            /// Destructeur ///
31            virtual ~CInstant(void);
32
33      }; // class CInstant
34
35   } // namespace func
36} // namespace xmlioserver
37
38#endif //__XMLIO_CInstant__
Note: See TracBrowser for help on using the repository browser.