fprime/Ref/RecvBuffApp/RecvBuff.hpp
bocchino 8d74ea11cc Revise header files
Replace 'typedef' with C++11 'using'
2021-08-02 13:01:38 -07:00

18 lines
370 B
C++

// ======================================================================
// RecvBuff.hpp
// Standardization header for RecvBuff
// ======================================================================
#ifndef Ref_RecvBuff_HPP
#define Ref_RecvBuff_HPP
#include "Ref/RecvBuffApp/RecvBuffComponentImpl.hpp"
namespace Ref {
using RecvBuff = RecvBuffImpl;
}
#endif