Boost logo

Boost-Commit :

From: matthiasschabel_at_[hidden]
Date: 2007-05-31 16:25:19


Author: matthiasschabel
Date: 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
New Revision: 4398
URL: http://svn.boost.org/trac/boost/changeset/4398

Log:
remove old dimension headers

Removed:
   sandbox/units/boost/units/systems/base_dimensions.hpp
   sandbox/units/boost/units/systems/base_dimensions/amount_base_dimension.hpp
   sandbox/units/boost/units/systems/base_dimensions/current_base_dimension.hpp
   sandbox/units/boost/units/systems/base_dimensions/length_base_dimension.hpp
   sandbox/units/boost/units/systems/base_dimensions/luminous_intensity_base_dimension.hpp
   sandbox/units/boost/units/systems/base_dimensions/mass_base_dimension.hpp
   sandbox/units/boost/units/systems/base_dimensions/plane_angle_base_dimension.hpp
   sandbox/units/boost/units/systems/base_dimensions/solid_angle_base_dimension.hpp
   sandbox/units/boost/units/systems/base_dimensions/temperature_base_dimension.hpp
   sandbox/units/boost/units/systems/base_dimensions/time_base_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions.hpp
   sandbox/units/boost/units/systems/derived_dimensions/absorbed_dose_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/acceleration_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/action_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/activity_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/angular_velocity_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/area_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/dose_equivalent_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/dynamic_viscosity_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/energy_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/force_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/frequency_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/illuminance_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/kinematic_viscosity_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/luminance_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/luminous_flux_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/mass_density_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/momentum_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/power_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/pressure_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/specific_volume_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/stress_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/surface_density_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/velocity_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/volume_derived_dimension.hpp
   sandbox/units/boost/units/systems/derived_dimensions/wavenumber_derived_dimension.hpp

Deleted: sandbox/units/boost/units/systems/base_dimensions.hpp
==============================================================================
--- sandbox/units/boost/units/systems/base_dimensions.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,33 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_BASE_DIMENSIONS_HPP
-#define BOOST_UNITS_BASE_DIMENSIONS_HPP
-
-/// \file
-/// \brief SI base physical dimensions.
-///
-/// \detailed This file includes the seven SI-defined base dimensions as
-/// well as derived dimensions for a number of commonly encountered
-/// physical unit types. Angles and solid angles are technically dimensionless.
-/// However, incorrect use of degrees and radians is a common source of errors,
-/// so we treat them on the same footing as the seven physical dimensions.
-
-#include <boost/units/systems/physical_dimensions/amount.hpp>
-#include <boost/units/systems/physical_dimensions/current.hpp>
-#include <boost/units/systems/physical_dimensions/length.hpp>
-#include <boost/units/systems/physical_dimensions/luminous_intensity.hpp>
-#include <boost/units/systems/physical_dimensions/mass.hpp>
-#include <boost/units/systems/physical_dimensions/plane_angle.hpp>
-#include <boost/units/systems/physical_dimensions/solid_angle.hpp>
-#include <boost/units/systems/physical_dimensions/temperature.hpp>
-#include <boost/units/systems/physical_dimensions/time.hpp>
-
-#endif // BOOST_UNITS_BASE_DIMENSIONS_HPP

Deleted: sandbox/units/boost/units/systems/base_dimensions/amount_base_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/base_dimensions/amount_base_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,47 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_AMOUNT_BASE_DIMENSION_HPP
-#define BOOST_UNITS_AMOUNT_BASE_DIMENSION_HPP
-
-#include <boost/units/config.hpp>
-#include <boost/units/base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of amount
-struct amount_base_dimension : boost::units::base_dimension<amount_base_dimension,-4> { };
-
-} // namespace units
-
-} // namespace boost
-
-#if BOOST_UNITS_HAS_BOOST_TYPEOF
-
-#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
-
-BOOST_TYPEOF_REGISTER_TYPE(boost::units::amount_base_dimension)
-
-#endif
-
-namespace boost {
-
-namespace units {
-
-/// dimension of amount of substance (N)
-typedef amount_base_dimension::type amount_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_AMOUNT_BASE_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/base_dimensions/current_base_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/base_dimensions/current_base_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,47 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_CURRENT_BASE_DIMENSION_HPP
-#define BOOST_UNITS_CURRENT_BASE_DIMENSION_HPP
-
-#include <boost/units/config.hpp>
-#include <boost/units/base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of current
-struct current_base_dimension : boost::units::base_dimension<current_base_dimension,-6> { };
-
-} // namespace units
-
-} // namespace boost
-
-#if BOOST_UNITS_HAS_BOOST_TYPEOF
-
-#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
-
-BOOST_TYPEOF_REGISTER_TYPE(boost::units::current_base_dimension)
-
-#endif
-
-namespace boost {
-
-namespace units {
-
-/// dimension of electric current (I)
-typedef current_base_dimension::type current_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_CURRENT_BASE_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/base_dimensions/length_base_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/base_dimensions/length_base_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,47 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_LENGTH_BASE_DIMENSION_HPP
-#define BOOST_UNITS_LENGTH_BASE_DIMENSION_HPP
-
-#include <boost/units/config.hpp>
-#include <boost/units/base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of length
-struct length_base_dimension : boost::units::base_dimension<length_base_dimension, -9> { };
-
-} // namespace units
-
-} // namespace boost
-
-#if BOOST_UNITS_HAS_BOOST_TYPEOF
-
-#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
-
-BOOST_TYPEOF_REGISTER_TYPE(boost::units::length_base_dimension)
-
-#endif
-
-namespace boost {
-
-namespace units {
-
-/// dimension of length (L)
-typedef length_base_dimension::type length_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_LENGTH_BASE_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/base_dimensions/luminous_intensity_base_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/base_dimensions/luminous_intensity_base_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,47 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_LUMINOUS_INTENSITY_BASE_DIMENSION_HPP
-#define BOOST_UNITS_LUMINOUS_INTENSITY_BASE_DIMENSION_HPP
-
-#include <boost/units/config.hpp>
-#include <boost/units/base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of luminous intensity
-struct luminous_intensity_base_dimension : boost::units::base_dimension<luminous_intensity_base_dimension,-3> { };
-
-} // namespace units
-
-} // namespace boost
-
-#if BOOST_UNITS_HAS_BOOST_TYPEOF
-
-#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
-
-BOOST_TYPEOF_REGISTER_TYPE(boost::units::luminous_intensity_base_dimension)
-
-#endif
-
-namespace boost {
-
-namespace units {
-
-/// dimension of luminous intensity (J)
-typedef luminous_intensity_base_dimension::type luminous_intensity_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_LUMINOUS_INTENSITY_BASE_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/base_dimensions/mass_base_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/base_dimensions/mass_base_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,47 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_MASS_BASE_DIMENSION_HPP
-#define BOOST_UNITS_MASS_BASE_DIMENSION_HPP
-
-#include <boost/units/config.hpp>
-#include <boost/units/base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of mass
-struct mass_base_dimension : boost::units::base_dimension<mass_base_dimension,-8> { };
-
-} // namespace units
-
-} // namespace boost
-
-#if BOOST_UNITS_HAS_BOOST_TYPEOF
-
-#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
-
-BOOST_TYPEOF_REGISTER_TYPE(boost::units::mass_base_dimension)
-
-#endif
-
-namespace boost {
-
-namespace units {
-
-/// dimension of mass (M)
-typedef mass_base_dimension::type mass_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_MASS_BASE_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/base_dimensions/plane_angle_base_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/base_dimensions/plane_angle_base_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,47 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_PLANE_ANGLE_BASE_DIMENSION_HPP
-#define BOOST_UNITS_PLANE_ANGLE_BASE_DIMENSION_HPP
-
-#include <boost/units/config.hpp>
-#include <boost/units/base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of plane angle
-struct plane_angle_base_dimension : boost::units::base_dimension<plane_angle_base_dimension,-2> { };
-
-} // namespace units
-
-} // namespace boost
-
-#if BOOST_UNITS_HAS_BOOST_TYPEOF
-
-#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
-
-BOOST_TYPEOF_REGISTER_TYPE(boost::units::plane_angle_base_dimension)
-
-#endif
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of plane angle (QP)
-typedef plane_angle_base_dimension::type plane_angle_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_PLANE_ANGLE_BASE_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/base_dimensions/solid_angle_base_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/base_dimensions/solid_angle_base_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,47 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_SOLID_ANGLE_BASE_DIMENSION_HPP
-#define BOOST_UNITS_SOLID_ANGLE_BASE_DIMENSION_HPP
-
-#include <boost/units/config.hpp>
-#include <boost/units/base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of solid angle
-struct solid_angle_base_dimension : boost::units::base_dimension<solid_angle_base_dimension,-1> { };
-
-} // namespace units
-
-} // namespace boost
-
-#if BOOST_UNITS_HAS_BOOST_TYPEOF
-
-#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
-
-BOOST_TYPEOF_REGISTER_TYPE(boost::units::solid_angle_base_dimension)
-
-#endif
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of solid angle (QS)
-typedef solid_angle_base_dimension::type solid_angle_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_SOLID_ANGLE_BASE_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/base_dimensions/temperature_base_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/base_dimensions/temperature_base_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,47 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_TEMPERATURE_BASE_DIMENSION_HPP
-#define BOOST_UNITS_TEMPERATURE_BASE_DIMENSION_HPP
-
-#include <boost/units/config.hpp>
-#include <boost/units/base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of temperature
-struct temperature_base_dimension : boost::units::base_dimension<temperature_base_dimension,-5> { };
-
-} // namespace units
-
-} // namespace boost
-
-#if BOOST_UNITS_HAS_BOOST_TYPEOF
-
-#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
-
-BOOST_TYPEOF_REGISTER_TYPE(boost::units::temperature_base_dimension)
-
-#endif
-
-namespace boost {
-
-namespace units {
-
-/// dimension of temperature (Theta)
-typedef temperature_base_dimension::type temperature_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_TEMPERATURE_BASE_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/base_dimensions/time_base_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/base_dimensions/time_base_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,47 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_TIME_BASE_DIMENSION_HPP
-#define BOOST_UNITS_TIME_BASE_DIMENSION_HPP
-
-#include <boost/units/config.hpp>
-#include <boost/units/base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// base dimension of time
-struct time_base_dimension : boost::units::base_dimension<time_base_dimension,-7> { };
-
-} // namespace units
-
-} // namespace boost
-
-#if BOOST_UNITS_HAS_BOOST_TYPEOF
-
-#include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
-
-BOOST_TYPEOF_REGISTER_TYPE(boost::units::time_base_dimension)
-
-#endif
-
-namespace boost {
-
-namespace units {
-
-/// dimension of time (T)
-typedef time_base_dimension::type time_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_TIME_BASE_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,45 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_DERIVED_DIMENSIONS_HPP
-#define BOOST_UNITS_DERIVED_DIMENSIONS_HPP
-
-/// \file
-/// \brief Common derived physical dimensions.
-///
-/// \detailed This file includes a number of common derived physical dimensions.
-
-#include <boost/units/systems/physical_dimensions/absorbed_dose.hpp>
-#include <boost/units/systems/physical_dimensions/acceleration.hpp>
-#include <boost/units/systems/physical_dimensions/action.hpp>
-#include <boost/units/systems/physical_dimensions/activity.hpp>
-#include <boost/units/systems/physical_dimensions/angular_velocity.hpp>
-#include <boost/units/systems/physical_dimensions/area.hpp>
-#include <boost/units/systems/physical_dimensions/dose_equivalent.hpp>
-#include <boost/units/systems/physical_dimensions/dynamic_viscosity.hpp>
-#include <boost/units/systems/physical_dimensions/energy.hpp>
-#include <boost/units/systems/physical_dimensions/force.hpp>
-#include <boost/units/systems/physical_dimensions/frequency.hpp>
-#include <boost/units/systems/physical_dimensions/illuminance.hpp>
-#include <boost/units/systems/physical_dimensions/kinematic_viscosity.hpp>
-#include <boost/units/systems/physical_dimensions/luminance.hpp>
-#include <boost/units/systems/physical_dimensions/luminous_flux.hpp>
-#include <boost/units/systems/physical_dimensions/mass_density.hpp>
-#include <boost/units/systems/physical_dimensions/momentum.hpp>
-#include <boost/units/systems/physical_dimensions/power.hpp>
-#include <boost/units/systems/physical_dimensions/pressure.hpp>
-#include <boost/units/systems/physical_dimensions/specific_volume.hpp>
-#include <boost/units/systems/physical_dimensions/stress.hpp>
-#include <boost/units/systems/physical_dimensions/surface_density.hpp>
-#include <boost/units/systems/physical_dimensions/velocity.hpp>
-#include <boost/units/systems/physical_dimensions/volume.hpp>
-#include <boost/units/systems/physical_dimensions/wavenumber.hpp>
-
-#endif // BOOST_UNITS_DERIVED_DIMENSIONS_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/absorbed_dose_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/absorbed_dose_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_ABSORBED_DOSE_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_ABSORBED_DOSE_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for absorbed dose : L^2 T^-2
-typedef derived_dimension<length_base_dimension,2,time_base_dimension,-2>::type absorbed_dose_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_ABSORBED_DOSE_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/acceleration_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/acceleration_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_ACCELERATION_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_ACCELERATION_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for acceleration : L T^-2
-typedef derived_dimension<length_base_dimension,1,time_base_dimension,-2>::type acceleration_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_ACCELERATION_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/action_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/action_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_ACTION_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_ACTION_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for action : L^2 M T^-1
-typedef derived_dimension<length_base_dimension,2,mass_base_dimension,1,time_base_dimension,-1>::type action_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_ACTION_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/activity_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/activity_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,28 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_ACTIVITY_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_ACTIVITY_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for activity : T^-1
-typedef derived_dimension<time_base_dimension,-1>::type activity_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_ACTIVITY_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/angular_velocity_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/angular_velocity_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_ANGULAR_VELOCITY_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_ANGULAR_VELOCITY_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/plane_angle_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for angular velocity : T^-1 QP
-typedef derived_dimension<time_base_dimension,-1,plane_angle_base_dimension,1>::type angular_velocity_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_ANGULAR_VELOCITY_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/area_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/area_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,28 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_AREA_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_AREA_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for area : L^2
-typedef derived_dimension<length_base_dimension,2>::type area_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_AREA_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/dose_equivalent_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/dose_equivalent_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_DOSE_EQUIVALENT_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_DOSE_EQUIVALENT_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for dose equivalent : L^2 T^-2
-typedef derived_dimension<length_base_dimension,2,time_base_dimension,-2>::type dose_equivalent_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_DOSE_EQUIVALENT_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/dynamic_viscosity_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/dynamic_viscosity_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,30 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_DYNAMIC_VISCOSITY_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_DYNAMIC_VISCOSITY_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/mass_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for dynamic viscosity : M L^-1 T^-1
-typedef derived_dimension<mass_base_dimension,1,length_base_dimension,-1,time_base_dimension,-1>::type dynamic_viscosity_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_DYNAMIC_VISCOSITY_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/energy_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/energy_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,30 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_ENERGY_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_ENERGY_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/mass_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for energy : L^2 M T^-2
-typedef derived_dimension<length_base_dimension,2,mass_base_dimension,1,time_base_dimension,-2>::type energy_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_ENERGY_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/force_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/force_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,30 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_FORCE_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_FORCE_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/mass_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for force : L M T^-2
-typedef derived_dimension<length_base_dimension,1,mass_base_dimension,1,time_base_dimension,-2>::type force_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_FORCE_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/frequency_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/frequency_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,28 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_FREQUENCY_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_FREQUENCY_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for frequency : T^-1
-typedef derived_dimension<time_base_dimension,-1>::type frequency_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_FREQUENCY_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/illuminance_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/illuminance_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,30 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_ILLUMINANCE_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_ILLUMINANCE_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/luminous_intensity_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/solid_angle_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for illuminance : L^-2 I QS
-typedef derived_dimension<length_base_dimension,-2,luminous_intensity_base_dimension,1,solid_angle_base_dimension,1>::type illuminance_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_ILLUMINANCE_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/kinematic_viscosity_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/kinematic_viscosity_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_KINEMATIC_VISCOSITY_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_KINEMATIC_VISCOSITY_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for kinematic viscosity : L^2 T^-1
-typedef derived_dimension<length_base_dimension,2,time_base_dimension,-1>::type kinematic_viscosity_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_KINEMATIC_VISCOSITY_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/luminance_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/luminance_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_LUMINANCE_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_LUMINANCE_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/luminous_intensity_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for luminance : L^-2 I
-typedef derived_dimension<length_base_dimension,-2,luminous_intensity_base_dimension,1>::type luminance_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_LUMINANCE_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/luminous_flux_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/luminous_flux_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_LUMINOUS_FLUX_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_LUMINOUS_FLUX_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/luminous_intensity_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/solid_angle_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for luminous flux : I QS
-typedef derived_dimension<luminous_intensity_base_dimension,1,solid_angle_base_dimension,1>::type luminous_flux_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_LUMINOUS_FLUX_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/mass_density_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/mass_density_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_MASS_DENSITY_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_MASS_DENSITY_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/mass_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for mass density : L^-3 M
-typedef derived_dimension<length_base_dimension,-3,mass_base_dimension,1>::type mass_density_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_MASS_DENSITY_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/momentum_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/momentum_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,30 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_MOMENTUM_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_MOMENTUM_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/mass_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for linear momentum : L M T^-1
-typedef derived_dimension<length_base_dimension,1,mass_base_dimension,1,time_base_dimension,-1>::type momentum_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_MOMENTUM_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/power_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/power_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,30 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_POWER_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_POWER_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/mass_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for power : L^2 M T^-3
-typedef derived_dimension<length_base_dimension,2,mass_base_dimension,1,time_base_dimension,-3>::type power_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_POWER_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/pressure_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/pressure_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,30 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_PRESSURE_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_PRESSURE_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/mass_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for pressure : L^-1 M T^-2
-typedef derived_dimension<length_base_dimension,-1,mass_base_dimension,1,time_base_dimension,-2>::type pressure_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_PRESSURE_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/specific_volume_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/specific_volume_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_SPECIFIC_VOLUME_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_SPECIFIC_VOLUME_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/mass_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for specific volume : L^3 M^-1
-typedef derived_dimension<length_base_dimension,3,mass_base_dimension,-1>::type specific_volume_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_SPECIFIC_VOLUME_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/stress_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/stress_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,30 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_STRESS_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_STRESS_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/mass_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for stress : L^-1 M T^-2
-typedef derived_dimension<length_base_dimension,-1,mass_base_dimension,1,time_base_dimension,-2>::type stress_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_STRESS_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/surface_density_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/surface_density_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_SURFACE_DENSITY_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_SURFACE_DENSITY_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/mass_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for surface density : L^-2 M
-typedef derived_dimension<length_base_dimension,-2,mass_base_dimension,1>::type surface_density_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_SURFACE_DENSITY_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/velocity_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/velocity_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,29 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_VELOCITY_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_VELOCITY_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-#include <boost/units/systems/base_dimensions/time_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for velocity : L T^-1
-typedef derived_dimension<length_base_dimension,1,time_base_dimension,-1>::type velocity_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_VELOCITY_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/volume_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/volume_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,28 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_VOLUME_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_VOLUME_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for volume : l^3
-typedef derived_dimension<length_base_dimension,3>::type volume_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_VOLUME_DERIVED_DIMENSION_HPP

Deleted: sandbox/units/boost/units/systems/derived_dimensions/wavenumber_derived_dimension.hpp
==============================================================================
--- sandbox/units/boost/units/systems/derived_dimensions/wavenumber_derived_dimension.hpp 2007-05-31 16:25:17 EDT (Thu, 31 May 2007)
+++ (empty file)
@@ -1,28 +0,0 @@
-// mcs::units - A C++ library for zero-overhead dimensional analysis and
-// unit/quantity manipulation and conversion
-//
-// Copyright (C) 2003-2007 Matthias Christian Schabel
-// Copyright (C) 2007 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_WAVENUMBER_DERIVED_DIMENSION_HPP
-#define BOOST_UNITS_WAVENUMBER_DERIVED_DIMENSION_HPP
-
-#include <boost/units/derived_dimension.hpp>
-#include <boost/units/systems/base_dimensions/length_base_dimension.hpp>
-
-namespace boost {
-
-namespace units {
-
-/// derived dimension for wavenumber : L^-1
-typedef derived_dimension<length_base_dimension,-1>::type wavenumber_dimension;
-
-} // namespace units
-
-} // namespace boost
-
-#endif // BOOST_UNITS_WAVENUMBER_DERIVED_DIMENSION_HPP


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk