Files
mp-units/example/alternative_namespaces/area.h
T
Mateusz Pusz 2a56438f1c refactor: file tree with systems defninitions refactored to limit ODR issues
Relates to #32 as with this commit we created something like modules for derived quantities
2020-09-11 18:11:25 +02:00

15 lines
317 B
C++

#pragma once
#include <units/physical/si/si.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