mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
* Format Svc and add to CI * Fix comlogger include * fix assert UTs * Fix static analysis warning * formatting
18 lines
424 B
C++
18 lines
424 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
|