mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 23:38:06 -06:00
* Experimental PPC build * VxWorks/GCC 4.3.3 compile backfixes * Changed using to typedef for older gcc * Added fp_compat.hpp header and commented code back in * Reverted vxworks experimental changes * Removed vxworks submodule * Some other reversions * Spelling * Update fp_compat.hpp * lestarch: deleting this * lestarch: reverting FP compat. Projects can add back in where needed. * Delete fp_compat.hpp Co-authored-by: M Starch <LeStarch@googlemail.com>
18 lines
426 B
C++
18 lines
426 B
C++
// ======================================================================
|
|
// CommandDispatcher.hpp
|
|
// Standardization header for CommandDispatcher
|
|
// ======================================================================
|
|
|
|
#ifndef Svc_CommandDispatcher_HPP
|
|
#define Svc_CommandDispatcher_HPP
|
|
|
|
#include "Svc/CmdDispatcher/CommandDispatcherImpl.hpp"
|
|
|
|
namespace Svc {
|
|
|
|
typedef CommandDispatcherImpl CommandDispatcher;
|
|
|
|
}
|
|
|
|
#endif
|