Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions include/boost/units/systems/si.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,25 @@
#include <boost/units/systems/si/electric_charge.hpp>
#include <boost/units/systems/si/electric_potential.hpp>
#include <boost/units/systems/si/energy.hpp>
#include <boost/units/systems/si/energy_density.hpp>
#include <boost/units/systems/si/force.hpp>
#include <boost/units/systems/si/frequency.hpp>
#include <boost/units/systems/si/heat_capacity.hpp>
#include <boost/units/systems/si/illuminance.hpp>
#include <boost/units/systems/si/impedance.hpp>
#include <boost/units/systems/si/inductance.hpp>
#include <boost/units/systems/si/kinematic_viscosity.hpp>
#include <boost/units/systems/si/length.hpp>
#include <boost/units/systems/si/luminance.hpp>
#include <boost/units/systems/si/luminous_flux.hpp>
#include <boost/units/systems/si/luminous_intensity.hpp>
#include <boost/units/systems/si/magnetic_field_intensity.hpp>
#include <boost/units/systems/si/magnetic_flux.hpp>
#include <boost/units/systems/si/magnetic_flux_density.hpp>
#include <boost/units/systems/si/mass.hpp>
#include <boost/units/systems/si/mass_density.hpp>
#include <boost/units/systems/si/molar_energy.hpp>
#include <boost/units/systems/si/molar_heat_capacity.hpp>
#include <boost/units/systems/si/moment_of_inertia.hpp>
#include <boost/units/systems/si/momentum.hpp>
#include <boost/units/systems/si/permeability.hpp>
Expand All @@ -65,9 +70,14 @@
#include <boost/units/systems/si/resistance.hpp>
#include <boost/units/systems/si/resistivity.hpp>
#include <boost/units/systems/si/solid_angle.hpp>
#include <boost/units/systems/si/specific_energy.hpp>
#include <boost/units/systems/si/specific_heat_capacity.hpp>
#include <boost/units/systems/si/specific_volume.hpp>
#include <boost/units/systems/si/stress.hpp>
#include <boost/units/systems/si/surface_density.hpp>
#include <boost/units/systems/si/surface_tension.hpp>
#include <boost/units/systems/si/temperature.hpp>
#include <boost/units/systems/si/thermal_conductivity.hpp>
#include <boost/units/systems/si/time.hpp>
#include <boost/units/systems/si/torque.hpp>
#include <boost/units/systems/si/velocity.hpp>
Expand Down
30 changes: 30 additions & 0 deletions include/boost/units/systems/si/energy_density.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2018 Eisuke Kawashima
//
// 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_SI_ENERGY_DENSITY_HPP
#define BOOST_UNITS_SI_ENERGY_DENSITY_HPP

#include <boost/units/systems/si/base.hpp>
#include <boost/units/physical_dimensions/energy_density.hpp>

namespace boost {

namespace units {

namespace si {

typedef unit<energy_density_dimension,si::system> energy_density;

} // namespace si

} // namespace units

} // namespace boost

#endif // BOOST_UNITS_SI_ENERGY_DENSITY_HPP
30 changes: 30 additions & 0 deletions include/boost/units/systems/si/heat_capacity.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2018 Eisuke Kawashima
//
// 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_SI_HEAT_CAPACITY_HPP
#define BOOST_UNITS_SI_HEAT_CAPACITY_HPP

#include <boost/units/systems/si/base.hpp>
#include <boost/units/physical_dimensions/heat_capacity.hpp>

namespace boost {

namespace units {

namespace si {

typedef unit<heat_capacity_dimension,si::system> heat_capacity;

} // namespace si

} // namespace units

} // namespace boost

#endif // BOOST_UNITS_SI_HEAT_CAPACITY_HPP
30 changes: 30 additions & 0 deletions include/boost/units/systems/si/luminance.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2018 Eisuke Kawashima
//
// 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_SI_LUMINANCE_HPP
#define BOOST_UNITS_SI_LUMINANCE_HPP

#include <boost/units/systems/si/base.hpp>
#include <boost/units/physical_dimensions/luminance.hpp>

namespace boost {

namespace units {

namespace si {

typedef unit<luminance_dimension,si::system> luminance;

} // namespace si

} // namespace units

} // namespace boost

#endif // BOOST_UNITS_SI_LUMINANCE_HPP
30 changes: 30 additions & 0 deletions include/boost/units/systems/si/molar_energy.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2018 Eisuke Kawashima
//
// 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_SI_MOLAR_ENERGY_HPP
#define BOOST_UNITS_SI_MOLAR_ENERGY_HPP

#include <boost/units/systems/si/base.hpp>
#include <boost/units/physical_dimensions/molar_energy.hpp>

namespace boost {

namespace units {

namespace si {

typedef unit<molar_energy_dimension,si::system> molar_energy;

} // namespace si

} // namespace units

} // namespace boost

#endif // BOOST_UNITS_SI_MOLAR_ENERGY_HPP
30 changes: 30 additions & 0 deletions include/boost/units/systems/si/molar_heat_capacity.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2018 Eisuke Kawashima
//
// 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_SI_MOLAR_HEAT_CAPACITY_HPP
#define BOOST_UNITS_SI_MOLAR_HEAT_CAPACITY_HPP

#include <boost/units/systems/si/base.hpp>
#include <boost/units/physical_dimensions/molar_heat_capacity.hpp>

namespace boost {

namespace units {

namespace si {

typedef unit<molar_heat_capacity_dimension,si::system> molar_heat_capacity;

} // namespace si

} // namespace units

} // namespace boost

#endif // BOOST_UNITS_SI_MOLAR_HEAT_CAPACITY_HPP
30 changes: 30 additions & 0 deletions include/boost/units/systems/si/specific_energy.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2018 Eisuke Kawashima
//
// 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_SI_SPECIFIC_ENERGY_HPP
#define BOOST_UNITS_SI_SPECIFIC_ENERGY_HPP

#include <boost/units/systems/si/base.hpp>
#include <boost/units/physical_dimensions/specific_energy.hpp>

namespace boost {

namespace units {

namespace si {

typedef unit<specific_energy_dimension,si::system> specific_energy;

} // namespace si

} // namespace units

} // namespace boost

#endif // BOOST_UNITS_SI_SPECIFIC_ENERGY_HPP
30 changes: 30 additions & 0 deletions include/boost/units/systems/si/specific_heat_capacity.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2018 Eisuke Kawashima
//
// 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_SI_SPECIFIC_HEAT_CAPACITY_HPP
#define BOOST_UNITS_SI_SPECIFIC_HEAT_CAPACITY_HPP

#include <boost/units/systems/si/base.hpp>
#include <boost/units/physical_dimensions/specific_heat_capacity.hpp>

namespace boost {

namespace units {

namespace si {

typedef unit<specific_heat_capacity_dimension,si::system> specific_heat_capacity;

} // namespace si

} // namespace units

} // namespace boost

#endif // BOOST_UNITS_SI_SPECIFIC_HEAT_CAPACITY_HPP
30 changes: 30 additions & 0 deletions include/boost/units/systems/si/specific_volume.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2018 Eisuke Kawashima
//
// 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_SI_SPECIFIC_VOLUME_HPP
#define BOOST_UNITS_SI_SPECIFIC_VOLUME_HPP

#include <boost/units/systems/si/base.hpp>
#include <boost/units/physical_dimensions/specific_volume.hpp>

namespace boost {

namespace units {

namespace si {

typedef unit<specific_volume_dimension,si::system> specific_volume;

} // namespace si

} // namespace units

} // namespace boost

#endif // BOOST_UNITS_SI_SPECIFIC_VOLUME_HPP
30 changes: 30 additions & 0 deletions include/boost/units/systems/si/stress.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2018 Eisuke Kawashima
//
// 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_SI_STRESS_HPP
#define BOOST_UNITS_SI_STRESS_HPP

#include <boost/units/systems/si/base.hpp>
#include <boost/units/physical_dimensions/stress.hpp>

namespace boost {

namespace units {

namespace si {

typedef unit<stress_dimension,si::system> stress;

} // namespace si

} // namespace units

} // namespace boost

#endif // BOOST_UNITS_SI_STRESS_HPP
30 changes: 30 additions & 0 deletions include/boost/units/systems/si/thermal_conductivity.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// Boost.Units - A C++ library for zero-overhead dimensional analysis and
// unit/quantity manipulation and conversion
//
// Copyright (C) 2018 Eisuke Kawashima
//
// 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_SI_THERMAL_CONDUCTIVITY_HPP
#define BOOST_UNITS_SI_THERMAL_CONDUCTIVITY_HPP

#include <boost/units/systems/si/base.hpp>
#include <boost/units/physical_dimensions/thermal_conductivity.hpp>

namespace boost {

namespace units {

namespace si {

typedef unit<thermal_conductivity_dimension,si::system> thermal_conductivity;

} // namespace si

} // namespace units

} // namespace boost

#endif // BOOST_UNITS_SI_THERMAL_CONDUCTIVITY_HPP