mirror of
https://github.com/nasa/fprime.git
synced 2025-12-11 04:35:25 -06:00
18 lines
382 B
C++
18 lines
382 B
C++
// ======================================================================
|
|
// TcpClient.hpp
|
|
// Standardization header for TcpClient
|
|
// ======================================================================
|
|
|
|
#ifndef Drv_TcpClient_HPP
|
|
#define Drv_TcpClient_HPP
|
|
|
|
#include "Drv/TcpClient/TcpClientComponentImpl.hpp"
|
|
|
|
namespace Drv {
|
|
|
|
typedef TcpClientComponentImpl TcpClient;
|
|
|
|
}
|
|
|
|
#endif
|