#ifndef _TR_TORRENT_HPP_ #define _TR_TORRENT_HPP_ #include namespace tr { namespace ws { template void on_error(Server server, Connection con, const boost::system::error_code) { } template void on_close(Server server, Connection con, int status, const std::string &reason) { } template void on_open(Server server, Connection con) { } template void on_message(Server server, Connection con, Message message) { } } } #endif