1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:18:12 +00:00

LibCore/DateTime: Add a helper for setting the time individually

This commit is contained in:
david072 2023-11-17 19:23:08 +01:00 committed by Andrew Kaster
parent 8e77c72a5c
commit 251e5fb074
2 changed files with 6 additions and 0 deletions

View file

@ -31,6 +31,7 @@ public:
bool is_leap_year() const;
void set_time(int year, int month = 1, int day = 1, int hour = 0, int minute = 0, int second = 0);
void set_time_only(int hour, int minute, Optional<int> second = {});
ErrorOr<String> to_string(StringView format = "%Y-%m-%d %H:%M:%S"sv) const;
ByteString to_byte_string(StringView format = "%Y-%m-%d %H:%M:%S"sv) const;