1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef SOULNG_UTIL_SOCKET_FWD_INCLUDED
 7 #define SOULNG_UTIL_SOCKET_FWD_INCLUDED
 8 #include <soulng/util/UtilApi.hpp>
 9 #include <string>
10 
11 namespace soulng { namespace util {
12 
13 class TcpSocket;
14 
15 void Write(TcpSocket& socketconst std::string& s);
16 std::string ReadStr(TcpSocket& socket);
17 
18 } } // namespace soulng::util
19 
20 #endif // SOULNG_UTIL_SOCKET_FWD_INCLUDED
21