Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. // forward declaration for asio members because systemc header is conflicting with asio headers
  2. // ( systemc includes windows headers before boost::asio can do. boost::asio does not approve this )
  3. namespace boost {
  4.     namespace asio {
  5.         class io_service;
  6.         namespace ip {
  7.             namespace tcp {
  8.                 class acceptor;
  9.                 class socket;
  10.             }
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement