Boost C++ Libraries/Boost.Asio
Boost.Asio 색인 - local::basic_endpoint::operator<<
까마귀75
2021. 2. 15. 13:54
728x90
반응형
local::basic_endpoint::operator<<
엔드포인트를 문자열로 출력하는 연산자이다.
std::basic_ostream< Elem, Traits > & operator<<( std::basic_ostream< Elem, Traits > & os, const basic_endpoint< Protocol > & endpoint);
주어진 엔드포인트를 사람이 읽을 수 있는 문자열로 출력하는데 사용된다.
파라미터
이 름 | 설 명 |
os | 문자열이 기록될 출력 스트림이다. |
endpoint | 기록할 엔드포인트이다. |
반환 값
출력 스트림이다.
Boost.Asio 홈
728x90
반응형