]> git.stg.codes - stg.git/commitdiff
Fixed deps between conn and proto.
authorMaxim Mamontov <faust.madf@gmail.com>
Wed, 22 Jul 2015 18:13:58 +0000 (21:13 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Wed, 22 Jul 2015 18:13:58 +0000 (21:13 +0300)
stglibs/sgcp.lib/include/stg/sgcp_conn.h
stglibs/sgcp.lib/include/stg/sgcp_proto.h

index 9deb7c7aa5ddcc4b002c1efd2d694354bd4a547b..075ddf27e9dd5a12fffeffb6fb5dfc590cbcf78d 100644 (file)
@@ -62,6 +62,8 @@ class Connection : public boost::enable_shared_from_this<Connection>
         ErrorHandler m_errorHandler;
 };
 
+typedef boost::shared_ptr<Connection> ConnectionPtr;
+
 } // namespace SGCP
 } // namespace STG
 
index 4d16c844acc3a51c2988febf87aed54327786410..9a750b5f0d49faf7721b7f74c5a709d5979e3ac7 100644 (file)
@@ -22,6 +22,7 @@
  */
 
 #include "sgcp_types.h" // TransportType
+#include "sgcp_conn.h"
 
 #include "stg/os_int.h"