#pragma once #include "../unit.h" #include namespace kel { namespace unit_type { struct meter{ static constexpr std::string_view name = "meter"; static constexpr std::string_view short_name = "m"; }; } template using meter = unit>; template using square_meter = unit>; }