123456789101112131415161718192021222324252627282930313233 |
- #ifndef BOOST_UNITS_SYSTEMS_INFORMATION_BIT_HPP_INCLUDED
- #define BOOST_UNITS_SYSTEMS_INFORMATION_BIT_HPP_INCLUDED
- #include <boost/units/systems/information/byte.hpp>
- #include <boost/units/base_units/information/bit.hpp>
- namespace boost {
- namespace units {
- namespace information {
- namespace hu {
- namespace bit {
- typedef unit<information_dimension, make_system<bit_base_unit>::type> info;
- }
- }
- BOOST_UNITS_STATIC_CONSTANT(bit, hu::bit::info);
- BOOST_UNITS_STATIC_CONSTANT(bits, hu::bit::info);
- }
- }
- }
- #endif
|