16 lines
118 B
C++
16 lines
118 B
C++
#ifndef Client_h__
|
|
#define Client_h__
|
|
|
|
#include <boost\asio.hpp>
|
|
|
|
class Client
|
|
{
|
|
Client();
|
|
~Client();
|
|
|
|
|
|
};
|
|
|
|
#endif
|
|
|