2020-03-11 19:39:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2020-09-13 00:11:02 +02:00
|
|
|
#include <units/physical/si/derived/volume.h>
|
2020-03-11 19:39:23 +00:00
|
|
|
|
|
|
|
|
namespace units{
|
|
|
|
|
namespace experimental{
|
|
|
|
|
|
|
|
|
|
namespace volume {
|
|
|
|
|
|
|
|
|
|
template<typename Rep = double>
|
2020-05-08 22:39:24 +02:00
|
|
|
using m3 = units::physical::si::volume<units::physical::si::cubic_metre, Rep>;
|
2020-03-11 19:39:23 +00:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}} // units::experimental
|
|
|
|
|
|