summaryrefslogtreecommitdiff
path: root/c++/time/second.hpp
blob: d127f861b26e5c08bb5816f73fd7943633379429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "../unit.hpp"

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>>;
}