summaryrefslogtreecommitdiff
path: root/src/time
diff options
context:
space:
mode:
authorClaudius Holeksa <mail@keldu.de>2023-05-23 18:32:59 +0200
committerClaudius Holeksa <mail@keldu.de>2023-05-23 18:32:59 +0200
commitcf18707c086a1b47600c924ae1f33a379d1d3fb2 (patch)
treec1beaf4fb536c5fce7831f0ea44dedbc6f8d5cc7 /src/time
parent49cd4c7f007df26733f8c609c234a37be8214163 (diff)
nix: Fixed dev install and moved folders
Diffstat (limited to 'src/time')
-rw-r--r--src/time/second.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/time/second.h b/src/time/second.h
new file mode 100644
index 0000000..6dca456
--- /dev/null
+++ b/src/time/second.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "../unit.h"
+
+namespace kel {
+namespace unit_type {
+struct second{
+ static constexpr std::string_view name = "second";
+ static constexpr std::string_view short_name = "s";
+};
+}
+
+template<typename S>
+using second = unit<S,unit_component<unit_type::second,1>>;
+}