fprime/Svc/RateGroupDriver/RateGroupDriver.hpp
bocchino 6c87c334fd Revise header files
Replace 'typedef' with 'using'
2021-08-02 14:10:19 -07:00

18 lines
414 B
C++

// ======================================================================
// RateGroupDriver.hpp
// Standardization header for RateGroupDriver
// ======================================================================
#ifndef Svc_RateGroupDriver_HPP
#define Svc_RateGroupDriver_HPP
#include "Svc/RateGroupDriver/RateGroupDriverImpl.hpp"
namespace Svc {
using RateGroupDriver = RateGroupDriverImpl;
}
#endif