forked from mpusz/mp-units
15 lines
327 B
C++
15 lines
327 B
C++
|
|
#pragma once
|
|
|
|
#include <units/physical/si/derived/area.h>
|
|
|
|
namespace area {
|
|
|
|
template<typename Rep = double>
|
|
using m2 = units::physical::si::area<units::physical::si::square_metre, Rep>;
|
|
|
|
template<typename Rep = double>
|
|
using fm2 = units::physical::si::area<units::physical::si::square_femtometre, Rep>;
|
|
|
|
} // namespace area
|