1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:27:35 +00:00

LibCore: Add a pure virtual parent to Core::Stream::BufferedSocket<T>

And declare a few of the stream classes in the forwarding header.
This commit is contained in:
Ali Mohammad Pur 2022-02-01 03:14:23 +03:30 committed by Andreas Kling
parent 9cf1c382df
commit 8a1dfbd484
2 changed files with 20 additions and 6 deletions

View file

@ -41,4 +41,10 @@ class UDPSocket;
enum class TimerShouldFireWhenNotVisible;
namespace Stream {
class Socket;
class Stream;
class BufferedSocketBase;
}
}