|
||||
File indexing completed on 2025-01-18 09:41:58
0001 // Copyright 2008 Christophe Henry 0002 // henry UNDERSCORE christophe AT hotmail DOT com 0003 // This is an extended version of the state machine available in the boost::mpl library 0004 // Distributed under the same license as the original. 0005 // Copyright for the original version: 0006 // Copyright 2005 David Abrahams and Aleksey Gurtovoy. Distributed 0007 // under the Boost Software License, Version 1.0. (See accompanying 0008 // file LICENSE_1_0.txt or copy at 0009 // http://www.boost.org/LICENSE_1_0.txt) 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 } } }//boost::msm::back 0030 0031 0032 #endif //BOOST_MSM_BACK_QUEUE_CONTAINER_CIRCULAR_H
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |