summaryrefslogtreecommitdiff
path: root/src/kelunit/time/second.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kelunit/time/second.h')
-rw-r--r--src/kelunit/time/second.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/kelunit/time/second.h b/src/kelunit/time/second.h
new file mode 100644
index 0000000..07145ca
--- /dev/null
+++ b/src/kelunit/time/second.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "../unit.h"
+
+namespace kelun {
+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_base<unit_type::second,1>>;
+}