1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_MPL_INSERTER_HPP_INCLUDED
- #define BOOST_MPL_INSERTER_HPP_INCLUDED
- namespace boost { namespace mpl {
- template<
- typename Sequence
- , typename Operation
- >
- struct inserter
- {
- typedef Sequence state;
- typedef Operation operation;
- };
- }}
- #endif
|