Program Listing for File Force.hpp
↰ Return to documentation for file (src/LouLib/Units/Force.hpp
)
#ifndef LOULIB_FORCE_HPP
#define LOULIB_FORCE_HPP
#include "BaseUnit.hpp"
#include "UnitMath.hpp"
#include "Mass.hpp"
#include "Length.hpp"
#include "Time.hpp"
namespace LouLib{
namespace Units{
DEFINE_NEW_UNIT(1, 1, -2, 0, 0, 0, 0, 0, Force);
constexpr Force NEWTON = (KILOGRAM * METER) / (SECOND * SECOND);
inline namespace literals{
#define CREATE_FORCE_STRING_LITERAL(literal, unit) \
constexpr Force operator"" literal(long double x){ \
return static_cast<double>(x)*unit; \
} \
constexpr Force operator"" literal(unsigned long long int x){ \
return static_cast<double>(x)*unit; \
}
CREATE_FORCE_STRING_LITERAL(_newton, NEWTON);
}
}
}
#endif //LOULIB_FORCE_HPP