Advertisement
Guest User

Untitled

a guest
May 31st, 2011
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #pragma once
  2. #include "Connection.h"
  3. class ConnectionFactory
  4. {
  5. public:
  6.     ConnectionFactory(void);
  7.     virtual ~ConnectionFactory(void);
  8.  
  9.     virtual Connection::pointer create(boost::asio::io_service& io_service) = 0;
  10. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement