cgs.hpp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Boost.Units - A C++ library for zero-overhead dimensional analysis and
  2. // unit/quantity manipulation and conversion
  3. //
  4. // Copyright (C) 2003-2008 Matthias Christian Schabel
  5. // Copyright (C) 2008 Steven Watanabe
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See
  8. // accompanying file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. #ifndef BOOST_UNITS_CGS_HPP
  11. #define BOOST_UNITS_CGS_HPP
  12. /// \file
  13. /// Includes all the cgs unit headers
  14. #include <string>
  15. #include <boost/units/quantity.hpp>
  16. #include <boost/units/systems/cgs/base.hpp>
  17. #include <boost/units/systems/cgs/dimensionless.hpp>
  18. #include <boost/units/systems/cgs/length.hpp>
  19. #include <boost/units/systems/cgs/mass.hpp>
  20. #include <boost/units/systems/cgs/time.hpp>
  21. #include <boost/units/systems/cgs/acceleration.hpp>
  22. #include <boost/units/systems/cgs/area.hpp>
  23. #include <boost/units/systems/cgs/current.hpp>
  24. #include <boost/units/systems/cgs/dynamic_viscosity.hpp>
  25. #include <boost/units/systems/cgs/energy.hpp>
  26. #include <boost/units/systems/cgs/force.hpp>
  27. #include <boost/units/systems/cgs/frequency.hpp>
  28. #include <boost/units/systems/cgs/kinematic_viscosity.hpp>
  29. #include <boost/units/systems/cgs/mass_density.hpp>
  30. #include <boost/units/systems/cgs/momentum.hpp>
  31. #include <boost/units/systems/cgs/power.hpp>
  32. #include <boost/units/systems/cgs/pressure.hpp>
  33. #include <boost/units/systems/cgs/velocity.hpp>
  34. #include <boost/units/systems/cgs/volume.hpp>
  35. #include <boost/units/systems/cgs/wavenumber.hpp>
  36. #endif // BOOST_UNITS_CGS_HPP