ProtocolServer: Put everything in the ProtocolServer namespace

This commit is contained in:
Andreas Kling 2020-05-17 16:33:09 +02:00
commit a4902e0eec
Notes: sideshowbarker 2024-07-19 06:33:42 +09:00
21 changed files with 158 additions and 56 deletions

View file

@ -27,6 +27,8 @@
#include <AK/HashMap.h>
#include <ProtocolServer/Protocol.h>
namespace ProtocolServer {
static HashMap<String, Protocol*>& all_protocols()
{
static HashMap<String, Protocol*> map;
@ -47,3 +49,5 @@ Protocol::~Protocol()
{
ASSERT_NOT_REACHED();
}
}