From b5a5fd6fe333aeed27166a0bd8ca61f510bb32ed Mon Sep 17 00:00:00 2001 From: Peter Thorson Date: Sun, 6 Jan 2013 08:50:15 -0600 Subject: [PATCH] adds a pointer type --- websocketpp/transport/asio/connection.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/websocketpp/transport/asio/connection.hpp b/websocketpp/transport/asio/connection.hpp index 341e93bc60..d90a408ada 100644 --- a/websocketpp/transport/asio/connection.hpp +++ b/websocketpp/transport/asio/connection.hpp @@ -51,7 +51,9 @@ class connection : public security { public: typedef connection type; typedef security security_type; - + + typedef lib::shared_ptr ptr; + class handler_interface : public security_type::handler_interface { public: virtual void on_tcp_init() {};