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

Last change on this file since 152 was 152, checked in by hozdoba, 13 years ago
File size: 981 bytes
Line 
1#include "once.hpp"
2
3namespace xmlioserver
4{
5   namespace func
6   {
7      /// ////////////////////// Définitions ////////////////////// ///
8
9      COnce::COnce(DoubleArray doutput,
10                   const CFunData & data,
11                   const std::vector<size_t> size)
12         : SuperClass(StdString("once"), doutput, size, data)
13      { /* Ne rien faire de plus */ }
14
15      COnce::~COnce(void)
16      { /* Ne rien faire de plus */ }
17
18      //---------------------------------------------------------------
19
20      void COnce::apply(const DoubleArray         UNUSED(dinput),
21                              DoubleArray         UNUSED(doutput),
22                        const std::vector<size_t> UNUSED(size),
23                        const CFunData &          UNUSED(data))
24      {
25         ERROR("COnce::apply(...)", << "Not implemented yet !");
26      }
27
28      //---------------------------------------------------------------
29
30   } // namespace func
31} // namespace xmlioserver
32
Note: See TracBrowser for help on using the repository browser.