1234567891011121314151617181920212223242526272829303132 |
- #ifndef BOOST_MSM_BACK_QUEUE_CONTAINER_CIRCULAR_H
- #define BOOST_MSM_BACK_QUEUE_CONTAINER_CIRCULAR_H
- #include <boost/circular_buffer.hpp>
- namespace boost { namespace msm { namespace back
- {
- struct queue_container_circular
- {
- typedef int queue_container_policy;
- template <class Element>
- struct In
- {
- typedef typename boost::circular_buffer<Element> type;
- };
- };
- } } }
- #endif
|