From: Matthias S. <mat...@us...> - 2007-04-13 06:08:52
|
Update of /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11338/boost/units/systems Modified Files: abstract.hpp physical_units.hpp Log Message: changes to use granular headers Index: abstract.hpp =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/abstract.hpp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- abstract.hpp 10 Apr 2007 22:58:42 -0000 1.7 +++ abstract.hpp 13 Apr 2007 06:08:52 -0000 1.8 @@ -14,6 +14,7 @@ #include <string> #include <boost/units/conversion.hpp> +#include <boost/units/ordinal.hpp> #include <boost/units/system.hpp> #include <boost/units/systems/physical_units.hpp> Index: physical_units.hpp =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/physical_units.hpp,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- physical_units.hpp 13 Apr 2007 03:46:35 -0000 1.16 +++ physical_units.hpp 13 Apr 2007 06:08:52 -0000 1.17 @@ -11,6 +11,8 @@ #ifndef BOOST_UNITS_PHYSICAL_UNITS_HPP #define BOOST_UNITS_PHYSICAL_UNITS_HPP +#include <boost/units/base_dimension.hpp> +#include <boost/units/derived_dimension.hpp> #include <boost/units/static_constant.hpp> #include <boost/units/system.hpp> #include <boost/units/unit.hpp> @@ -38,9 +40,9 @@ BOOST_UNITS_REGISTER_BASE_DIMENSION(plane_angle_dim,-2); ///> base dimension of plane angle BOOST_UNITS_REGISTER_BASE_DIMENSION(solid_angle_dim,-1); ///> base dimension of solid angle -} +} // namespace units -} +} // namespace boost #if BOOST_UNITS_HAS_BOOST_TYPEOF |