summaryrefslogtreecommitdiff
path: root/src/kelunit/time/second.h
blob: 07145ca1a72eb0d841a4c5daacececa5de044870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>>;
}