/usr/include/boost/units/base_units/imperial
NameSizeModeActions
conversions.hpp24540644editdlrm
drachm.hpp11560644editdlrm
fluid_ounce.hpp12020644editdlrm
foot.hpp11190644editdlrm
furlong.hpp11430644editdlrm
gallon.hpp12610644editdlrm
gill.hpp12500644editdlrm
grain.hpp11510644editdlrm
hundredweight.hpp11950644editdlrm
inch.hpp11200644editdlrm
league.hpp11370644editdlrm
mile.hpp11210644editdlrm
ounce.hpp11450644editdlrm
pint.hpp9650644editdlrm
pound.hpp12980644editdlrm
quart.hpp12530644editdlrm
quarter.hpp11620644editdlrm
stone.hpp11450644editdlrm
thou.hpp11250644editdlrm
ton.hpp11400644editdlrm
yard.hpp10810644editdlrm
Edit: /usr/include/boost/units/base_units/imperial/inch.hpp (1120B)
// 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) #ifndef BOOST_UNITS_IMPERIAL_INCH_BASE_UNIT_HPP #define BOOST_UNITS_IMPERIAL_INCH_BASE_UNIT_HPP #include #include #include #include namespace boost { namespace units { namespace imperial { typedef scaled_base_unit > > inch_base_unit; } // namespace imperial template<> struct base_unit_info { static BOOST_CONSTEXPR const char* name() { return("inch"); } static BOOST_CONSTEXPR const char* symbol() { return("in"); } }; } // namespace units } // namespace boost #endif // BOOST_UNITS_IMPERIAL_INCH_BASE_UNIT_HPP