// Boost.Units - A C++ library for zero-overhead dimensional analysis and // unit/quantity manipulation and conversion // // Copyright (C) 2003-2008 Matthias Christian Schabel // Copyright (C) 2008 Steven Watanabe // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_UNITS_CODATA_TYPEDEFS_HPP #define BOOST_UNITS_CODATA_TYPEDEFS_HPP #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace units { namespace si { namespace constants { namespace codata { typedef divide_typeof_helper::type frequency_over_electric_potential; typedef divide_typeof_helper::type electric_charge_over_mass; typedef divide_typeof_helper::type mass_over_amount; typedef divide_typeof_helper::type energy_over_magnetic_flux_density; typedef divide_typeof_helper::type frequency_over_magnetic_flux_density; typedef divide_typeof_helper::type current_over_energy; typedef divide_typeof_helper::type inverse_amount; typedef divide_typeof_helper::type energy_over_temperature; typedef divide_typeof_helper::type energy_over_temperature_amount; typedef divide_typeof_helper< divide_typeof_helper::type, power_typeof_helper >::type >::type power_over_area_temperature_4; typedef multiply_typeof_helper::type power_area; typedef divide_typeof_helper::type power_area_over_solid_angle; typedef multiply_typeof_helper::type length_temperature; typedef divide_typeof_helper::type frequency_over_temperature; typedef divide_typeof_helper::type,current>::type force_over_current_squared; typedef divide_typeof_helper::type capacitance_over_length; typedef divide_typeof_helper< divide_typeof_helper::type,time>::type, time >::type volume_over_mass_time_squared; typedef multiply_typeof_helper::type energy_time; typedef divide_typeof_helper::type electric_charge_over_amount; } // namespace codata } // namespace constants } // namespace si } // namespace units } // namespace boost #endif