12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef BOOST_MPL_RATIONAL_C_HPP_INCLUDED
- #define BOOST_MPL_RATIONAL_C_HPP_INCLUDED
- #include <boost/mpl/aux_/config/static_constant.hpp>
- namespace boost { namespace mpl {
- template<
- typename IntegerType
- , IntegerType N
- , IntegerType D = 1
- >
- struct rational_c
- {
- BOOST_STATIC_CONSTANT(IntegerType, numerator = N);
- BOOST_STATIC_CONSTANT(IntegerType, denominator = D);
-
- typedef rational_c<IntegerType,N,D> type;
- rational_c() {}
- };
- }}
- #endif
|