mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 13:43:45 +03:00
3a71748e5d
This was done with CLion's automatic rename feature and with: find . -name ClientConnection.h | rename 's/ClientConnection\.h/ConnectionFromClient.h/' find . -name ClientConnection.cpp | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
21 lines
317 B
C++
21 lines
317 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace RequestServer {
|
|
|
|
class ConnectionFromClient;
|
|
class Request;
|
|
class GeminiProtocol;
|
|
class HttpRequest;
|
|
class HttpProtocol;
|
|
class HttpsRequest;
|
|
class HttpsProtocol;
|
|
class Protocol;
|
|
|
|
}
|