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