/** CODE GENERATED BY: setup.py * @file * * NAME: SOUNDING_INTERP_Task * * FUNCTION: SOUNDING_INTERP Task C++ interface. * * DESCRIPTION: * - PUBLIC MEMBER FUNCTIONS * - SLONG preProcess() * - Postcondition: Task pre-processing complete. * Returns RETURN_SUCCESS if the operation was * successful, otherwise it returns RETURN_FAIL. * - SLONG processSegment() * - Postcondition: Task segment processing complete. * Returns RETURN_SUCCESS if the operation was * successful, otherwise it returns RETURN_FAIL. * - SLONG postProcess() * - Postcondition: Taks post-processing complete. * Returns RETURN_SUCCESS if the operation was * successful, otherwise it returns RETURN_FAIL. * * REFERENCE: * * CALLING SEQUENCE: * - Pre-processing before segment processing * - Segment processing for each segment * - Post-processing after segment processing * * INPUTS: * * OUTPUTS: * * DEPENDENCIES: * * #include "Task.hpp" * * RESTRICTIONS: * * HISTORY: * - Created by setup.py * * @ingroup SOUNDING_INTERP */ #include "SOUNDING_INTERP_Task.hpp" #include "Framework_Global_Variables.hpp" #include "SystemConnection.hpp" #include "Logger.hpp" using namespace FW; using namespace FW::FC; extern "C" { void run_sounding_interp_(SLONG* Return_Status); } SLONG SOUNDING_INTERP_Task::validate() { // Call prerequisites validation here, as needed. return RETURN_SUCCESS; } SLONG SOUNDING_INTERP_Task::preProcess() { SLONG Return_Status = RETURN_SUCCESS; return Return_Status; } SLONG SOUNDING_INTERP_Task::processSegment() { SLONG Return_Status = RETURN_SUCCESS; run_sounding_interp_(&Return_Status); return Return_Status; } SLONG SOUNDING_INTERP_Task::postProcess() { SLONG Return_Status = RETURN_SUCCESS; return Return_Status; }