diff options
Diffstat (limited to 'src/time')
-rw-r--r-- | src/time/second.h | 15 |
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>>; +} |