29 lines
1.1 KiB
C++
29 lines
1.1 KiB
C++
/*
|
|
* This code is a modified version of Benjamin Jurke's work in 2015. You can read his blog post
|
|
* here:
|
|
* https://benjaminjurke.com/content/articles/2015/compile-time-numerical-unit-dimension-checking/
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "okapi/api/units/QArea.hpp"
|
|
#include "okapi/api/units/QLength.hpp"
|
|
#include "okapi/api/units/RQuantity.hpp"
|
|
|
|
namespace okapi {
|
|
QUANTITY_TYPE(0, 3, 0, 0, QVolume)
|
|
|
|
constexpr QVolume kilometer3 = kilometer2 * kilometer;
|
|
constexpr QVolume meter3 = meter2 * meter;
|
|
constexpr QVolume decimeter3 = decimeter2 * decimeter;
|
|
constexpr QVolume centimeter3 = centimeter2 * centimeter;
|
|
constexpr QVolume millimeter3 = millimeter2 * millimeter;
|
|
constexpr QVolume inch3 = inch2 * inch;
|
|
constexpr QVolume foot3 = foot2 * foot;
|
|
constexpr QVolume mile3 = mile2 * mile;
|
|
constexpr QVolume litre = decimeter3;
|
|
} // namespace okapi
|