YAPOG  0.0.1
Yet Another Pokemon Online Game
Socket.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_SOCKET_HPP
2 # define YAPOG_SOCKET_HPP
3 
4 # include <SFML/Network/Socket.hpp>
5 
6 # include "YAPOG/Macros.hpp"
8 
9 namespace yap
10 {
11  class Socket : public ISocket
12  {
14 
15  public:
16 
17  virtual ~Socket ();
18 
19  protected:
20 
21  Socket ();
22  };
23 } // namespace yap
24 
25 #endif // YAPOG_SOCKET_HPP