/** @file * * NAME: Algorithm Static Task Factory * * FUNCTION: * Creates a task object for the statically linked executables. * * DESCRIPTION: * Creates a task factory that is used for a single algorithm executable. * Do not modify because it is auto-generated and will be overwritten. * * REFERENCE: * * CALLING SEQUENCE: * * INPUTS: * * OUTPUTS: * * DEPENDENCIES: None * * RESTRICTIONS: None * * HISTORY: * - CREATED BY setup.py * * @ingroup PARALLAX */ #include "PARALLAX_Task.hpp" #include "StaticTaskFactory.hpp" using namespace std; namespace FW { namespace TSK { extern const static_task_factory_map_type STATIC_TASK_FACTORY = { {"PARALLAX", []{return make_shared();}} }; } // namespace TSK } // namespace FW