diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-11 19:42:02 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-11 19:43:29 +0100 |
commit | b8cf83926a98bcaa8664aa3eecec9e9ec61a72c1 (patch) | |
tree | 0d8de094d106c2882cb160e1bee586757a3e2a87 /Libraries/LibCore/Makefile | |
parent | 29aa8373d4a18114b9a85a31a33683396a76e239 (diff) | |
download | serenity-b8cf83926a98bcaa8664aa3eecec9e9ec61a72c1.zip |
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();
Diffstat (limited to 'Libraries/LibCore/Makefile')
-rw-r--r-- | Libraries/LibCore/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibCore/Makefile b/Libraries/LibCore/Makefile index 2c57812c70..b2b47d06c5 100644 --- a/Libraries/LibCore/Makefile +++ b/Libraries/LibCore/Makefile @@ -1,5 +1,6 @@ OBJS = \ ArgsParser.o \ + DateTime.o \ IODevice.o \ File.o \ Socket.o \ |