/usr/include/boost/units
NameSizeModeActions
base_units/-0755rm
detail/-0755rm
physical_dimensions/-0755rm
systems/-0755rm
absolute.hpp55400644editdlrm
base_dimension.hpp36920644editdlrm
base_unit.hpp41320644editdlrm
cmath.hpp205920644editdlrm
config.hpp28290644editdlrm
conversion.hpp95180644editdlrm
derived_dimension.hpp64650644editdlrm
dim.hpp47450644editdlrm
dimension.hpp44030644editdlrm
dimensionless_quantity.hpp9950644editdlrm
dimensionless_type.hpp13150644editdlrm
dimensionless_unit.hpp9570644editdlrm
get_dimension.hpp12210644editdlrm
get_system.hpp11650644editdlrm
heterogeneous_system.hpp122580644editdlrm
homogeneous_system.hpp23990644editdlrm
io.hpp324700644editdlrm
is_dim.hpp8850644editdlrm
is_dimensionless.hpp11070644editdlrm
is_dimensionless_quantity.hpp9360644editdlrm
is_dimensionless_unit.hpp9050644editdlrm
is_dimension_list.hpp10570644editdlrm
is_quantity.hpp9160644editdlrm
is_quantity_of_dimension.hpp11150644editdlrm
is_quantity_of_system.hpp10970644editdlrm
is_unit.hpp8790644editdlrm
is_unit_of_dimension.hpp11380644editdlrm
is_unit_of_system.hpp11270644editdlrm
lambda.hpp268410644editdlrm
limits.hpp43450644editdlrm
make_scaled_unit.hpp18170644editdlrm
make_system.hpp49140644editdlrm
operators.hpp62870644editdlrm
physical_dimensions.hpp45320644editdlrm
pow.hpp30330644editdlrm
quantity.hpp418600644editdlrm
reduce_unit.hpp8680644editdlrm
scale.hpp50620644editdlrm
scaled_base_unit.hpp36430644editdlrm
static_constant.hpp24250644editdlrm
static_rational.hpp104350644editdlrm
unit.hpp134490644editdlrm
units_fwd.hpp21910644editdlrm
Edit: /usr/include/boost/units/base_unit.hpp (4132B)
// Boost.Units - A C++ library for zero-overhead dimensional analysis and // unit/quantity manipulation and conversion // // Copyright (C) 2003-2008 Matthias Christian Schabel // Copyright (C) 2007-2008 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) /// \file /// \brief base unit (meter, kg, sec...). /// \details base unit definition registration. #ifndef BOOST_UNITS_BASE_UNIT_HPP #define BOOST_UNITS_BASE_UNIT_HPP #include #include #include #include #include #include #include #include namespace boost { namespace units { /// This must be in namespace boost::units so that ADL /// will work with friend functions defined inline. /// Base dimensions and base units are independent. /// INTERNAL ONLY template struct base_unit_ordinal { }; /// INTERNAL ONLY template struct base_unit_pair { }; /// INTERNAL ONLY template struct check_base_unit { enum { value = sizeof(boost_units_unit_is_registered(units::base_unit_ordinal())) == sizeof(detail::yes) && sizeof(boost_units_unit_is_registered(units::base_unit_pair())) != sizeof(detail::yes) }; }; /// Defines a base unit. To define a unit you need to provide /// the derived class (CRTP), a dimension list and a unique integer. /// @code /// struct my_unit : boost::units::base_unit {}; /// @endcode /// It is designed so that you will get an error message if you try /// to use the same value in multiple definitions. template::value >::type #endif > class base_unit : public ordinal { public: /// INTERNAL ONLY typedef void boost_units_is_base_unit_type; /// INTERNAL ONLY typedef base_unit this_type; /// The dimensions of this base unit. typedef Dim dimension_type; /// Provided for mpl compatability. typedef Derived type; /// The unit corresponding to this base unit. #ifndef BOOST_UNITS_DOXYGEN typedef unit< Dim, heterogeneous_system< heterogeneous_system_impl< list< heterogeneous_system_dim >, dimensionless_type >, Dim, no_scale > > > unit_type; #else typedef detail::unspecified unit_type; #endif private: /// Check for C++0x. In C++0x, we have to have identical /// arguments but a different return type to trigger an /// error. Note that this is only needed for clang as /// check_base_unit will trigger an error earlier /// for compilers with less strict name lookup. /// INTERNAL ONLY friend BOOST_CONSTEXPR Derived* check_double_register(const units::base_unit_ordinal&) { return(0); } /// Register this ordinal /// INTERNAL ONLY friend BOOST_CONSTEXPR detail::yes boost_units_unit_is_registered(const units::base_unit_ordinal&) { return(detail::yes()); } /// But make sure we can identify the current instantiation! /// INTERNAL ONLY friend BOOST_CONSTEXPR detail::yes boost_units_unit_is_registered(const units::base_unit_pair&) { return(detail::yes()); } }; } // namespace units } // namespace boost #endif // BOOST_UNITS_BASE_UNIT_HPP