1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 08:07:44 +00:00

LibCore: Add utility class for temporary files and directories

Core::TempFile is a RAII type that creates a temporary file or directory
on construction and deletes it on destruction.
This commit is contained in:
Itamar 2022-01-07 16:22:39 +02:00 committed by Andreas Kling
parent 28a6686f2c
commit 95545648bd
3 changed files with 97 additions and 0 deletions

View file

@ -33,6 +33,7 @@ set(SOURCES
System.cpp
TCPServer.cpp
TCPSocket.cpp
TempFile.cpp
Timer.cpp
UDPServer.cpp
UDPSocket.cpp