summaryrefslogtreecommitdiff
path: root/c++/time/second.hpp
blob: 6dca4567e8868475afae31e0ed3576df7118aaee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>>;
}