/* Boost interval/detail/interval_prototype.hpp file * * Copyright 2002 Hervé Brönnimann, Guillaume Melquiond, Sylvain Pion * * 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_NUMERIC_INTERVAL_DETAIL_INTERVAL_PROTOTYPE_HPP #define BOOST_NUMERIC_INTERVAL_DETAIL_INTERVAL_PROTOTYPE_HPP namespace boost { namespace numeric { namespace interval_lib { template struct rounded_math; template struct checking_strict; class comparison_error; template struct policies; /* * default policies class */ template struct default_policies { typedef policies, checking_strict > type; }; } // namespace interval_lib template::type > class interval; } // namespace numeric } // namespace boost #endif // BOOST_NUMERIC_INTERVAL_DETAIL_INTERVAL_PROTOTYPE_HPP