source: XMLIO_V2/dev/common/src/xmlio/functor/instant.cpp @ 219

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

Préparation nouvelle arborescence

File size: 774 bytes
RevLine 
[219]1#include "instant.hpp"
2
3namespace xmlioserver
4{
5   namespace func
6   {
7      /// ////////////////////// Définitions ////////////////////// ///
8
9      CInstant::CInstant(DoubleArray doutput)
10         : SuperClass(StdString("instant"), doutput)
11      { /* Ne rien faire de plus */ }
12
13      CInstant::~CInstant(void)
14      { /* Ne rien faire de plus */ }
15
16      //---------------------------------------------------------------
17
18      void CInstant::apply(const DoubleArray         UNUSED(dinput),
19                                 DoubleArray         UNUSED(doutput))
20      {
21         ERROR("CInstant::apply(...)", << "Not implemented yet !");
22      }
23
24      //---------------------------------------------------------------
25
26   } // namespace func
27} // namespace xmlioserver
Note: See TracBrowser for help on using the repository browser.