Move PeerRole to its own file

This commit is contained in:
Vinnie Falco
2013-08-10 12:16:46 -07:00
parent 60935368a3
commit 26bb91a873
21 changed files with 139 additions and 71 deletions

View File

@@ -22,9 +22,9 @@ TestPeerLogicAsyncServer::TestPeerLogicAsyncServer (Socket& socket)
{
}
TestPeerBasics::Role TestPeerLogicAsyncServer::get_role () const noexcept
PeerRole TestPeerLogicAsyncServer::get_role () const noexcept
{
return Role::server;
return PeerRole::server;
}
TestPeerBasics::Model TestPeerLogicAsyncServer::get_model () const noexcept