Files
hpcore/src/usr/user_comm_server.hpp
Ravin Perera 3ea0299964 Comm session re-architecture and self comm channel. (#145)
* Introduced self comm channel instead of loopback websocket.
* Introduced comm_session and comm_server inheritance hierarchy.
* Separated peer session and user session classes.
2020-11-08 22:14:08 +05:30

15 lines
356 B
C++

#ifndef _HP_USR_USER_COMM_SERVER_
#define _HP_USR_USER_COMM_SERVER_
#include "../comm/comm_server.hpp"
#include "user_comm_session.hpp"
namespace usr
{
class user_comm_server : public comm::comm_server<user_comm_session>
{
using comm::comm_server<user_comm_session>::comm_server; // Inherit constructors.
};
} // namespace usr
#endif