#include "once.hpp" namespace xmlioserver { namespace func { /// ////////////////////// Définitions ////////////////////// /// COnce::COnce(DoubleArray doutput, const CFunData & data, const std::vector size) : SuperClass(StdString("once"), doutput, size, data) { /* Ne rien faire de plus */ } COnce::~COnce(void) { /* Ne rien faire de plus */ } //--------------------------------------------------------------- void COnce::apply(const DoubleArray UNUSED(dinput), DoubleArray UNUSED(doutput), const std::vector UNUSED(size), const CFunData & UNUSED(data)) { ERROR("COnce::apply(...)", << "Not implemented yet !"); } //--------------------------------------------------------------- } // namespace func } // namespace xmlioserver