1 // Boost.Units - A C++ library for zero-overhead dimensional analysis and
2 // unit/quantity manipulation and conversion
4 // Copyright (C) 2014 Erik Erlandson
6 // Distributed under the Boost Software License, Version 1.0. (See
7 // accompanying file LICENSE_1_0.txt or copy at
8 // http://www.boost.org/LICENSE_1_0.txt)
10 #ifndef BOOST_UNITS_BASE_UNITS_INFORMATION_BIT_HPP_INCLUDED
11 #define BOOST_UNITS_BASE_UNITS_INFORMATION_BIT_HPP_INCLUDED
15 #include <boost/units/config.hpp>
16 #include <boost/units/base_unit.hpp>
17 #include <boost/units/physical_dimensions/information.hpp>
21 namespace information {
23 struct bit_base_unit : public base_unit<bit_base_unit, information_dimension, -700>
25 static std::string name() { return("bit"); }
26 static std::string symbol() { return("b"); }
29 } // namespace information
33 #if BOOST_UNITS_HAS_BOOST_TYPEOF
35 #include BOOST_TYPEOF_INCREMENT_REGISTRATION_GROUP()
37 BOOST_TYPEOF_REGISTER_TYPE(boost::units::information::bit_base_unit)
41 #endif // BOOST_UNITS_BASE_UNITS_INFORMATION_BIT_HPP_INCLUDED