mirror of
https://github.com/mpusz/mp-units.git
synced 2026-02-07 15:45:39 +01:00
15 lines
319 B
C++
15 lines
319 B
C++
|
|
#pragma once
|
|
|
|
#include <units/physical/si/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
|