Warning, file /include/boost/msm/back/queue_container_circular.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_MSM_BACK_QUEUE_CONTAINER_CIRCULAR_H
0012 #define BOOST_MSM_BACK_QUEUE_CONTAINER_CIRCULAR_H
0013
0014 #include <boost/circular_buffer.hpp>
0015
0016 namespace boost { namespace msm { namespace back
0017 {
0018 struct queue_container_circular
0019 {
0020 typedef int queue_container_policy;
0021
0022 template <class Element>
0023 struct In
0024 {
0025 typedef typename boost::circular_buffer<Element> type;
0026 };
0027 };
0028
0029 } } }
0030
0031
0032 #endif