view include/core/time.h @ 43:eb9a78345ecb

ci/osx: Use the actually supported Ubuntu image I don't like Ubuntu, but for some reason Darling only provides real working .deb images *specifically for* Ubuntu.
author Paper <mrpapersonic@gmail.com>
date Fri, 22 Sep 2023 12:06:49 -0400
parents 2743011a6042
children c69230dc2b5d
line wrap: on
line source

#ifndef __core__time_h
#define __core__time_h
#include <cstdint>
#include <string>
namespace Time {

class Duration {
	public:
		Duration(int64_t l);
		int64_t InSeconds();
		int64_t InMinutes();
		int64_t InHours();
		int64_t InDays();
		std::string AsRelativeString();

	private:
		int64_t length;
};

int64_t GetSystemTime();

};     // namespace Time
#endif // __core__time_h