Realistic 3D camera system
3D camera system components
connection_manager.hpp
Go to the documentation of this file.
1 //
2 // connection_manager.hpp
3 // ~~~~~~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
10 
11 #ifndef HTTP_CONNECTION_MANAGER_HPP
12 #define HTTP_CONNECTION_MANAGER_HPP
13 
14 #include <set>
15 #include <boost/noncopyable.hpp>
16 #include "connection.hpp"
17 
18 namespace http {
19 namespace server {
20 
24  : private boost::noncopyable
25 {
26 public:
28  void start(connection_ptr c);
29 
31  void stop(connection_ptr c);
32 
34  void stop_all();
35 
36 private:
38  std::set<connection_ptr> connections_;
39 };
40 
41 } // namespace server
42 } // namespace http
43 
44 #endif // HTTP_CONNECTION_MANAGER_HPP
void start(connection_ptr c)
Add the specified connection to the manager and start it.
void stop(connection_ptr c)
Stop the specified connection.
boost::shared_ptr< connection > connection_ptr
Definition: connection.hpp:78
void stop_all()
Stop all connections.