/** * Copyright (c) 2011 Ubimet * * 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 FLOAT_HPP #define FLOAT_HPP #include namespace boost { namespace spirit { BOOST_SPIRIT_TERMINAL_EX(bin_float); BOOST_SPIRIT_TERMINAL_EX(big_bin_float); BOOST_SPIRIT_TERMINAL_EX(little_bin_float); BOOST_SPIRIT_TERMINAL_EX(bin_double); BOOST_SPIRIT_TERMINAL_EX(big_bin_double); BOOST_SPIRIT_TERMINAL_EX(little_bin_double); }} #endif // FLOAT_HPP