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

LibCore: Add a basic Core::DateTime class

This is just to have a pleasant way to print the current time for now:

    dbg() << Core::DateTime::now();

Or if you want it as a string:

    Core::DateTime::now().to_string();
This commit is contained in:
Andreas Kling 2020-02-11 19:42:02 +01:00
parent 29aa8373d4
commit b8cf83926a
3 changed files with 120 additions and 0 deletions

View file

@ -1,5 +1,6 @@
OBJS = \
ArgsParser.o \
DateTime.o \
IODevice.o \
File.o \
Socket.o \