rohdeschwarz  0.2.0
TCPIP socket library for Rohde & Schwarz instrument control
helpers.hpp
Go to the documentation of this file.
1 
5 #ifndef ROHDESCHWARZ_BUSSES_SOCKET_HELPERS_HPP
6 #define ROHDESCHWARZ_BUSSES_SOCKET_HELPERS_HPP
7 
8 
9 // rohdeschwarz
11 
12 
13 // boost
14 #include <boost/asio.hpp>
15 
16 
18 {
19 
20 
29 boost::asio::ip::basic_resolver<boost::asio::ip::tcp>::results_type resolve
30 (
31  const std::string &host,
32  int port,
33  boost::asio::io_context& io_context
34 );
35 
36 
37 } // rohdeschwarz::busses::socket
38 #endif // ROHDESCHWARZ_BUSSES_SOCKET_HELPERS_HPP
rohdeschwarz::busses::Bus class definition
boost::asio::ip::basic_resolver< boost::asio::ip::tcp >::results_type resolve(const std::string &host, int port, boost::asio::io_context &io_context)
Resolves TCP IP endpoint(s) from host, port.
Definition: helpers.cpp:16