KISSCPP
a C++ library for rapid application development
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
statable_queue.hpp
Go to the documentation of this file.
1 #ifndef _STATABLE_QUEUE_HPP_
2 #define _STATABLE_QUEUE_HPP_
3 
4 #include <boost/shared_ptr.hpp>
5 
6 namespace kisscpp
7 {
9  {
10  public:
13 
14  virtual size_t size() = 0;
15 
16  protected:
17  private:
18  };
19 
20  typedef boost::shared_ptr<StatAbleQueue> sharedStatAbleQ;
21 }
22 
23 #endif
24 
~StatAbleQueue()
Definition: statable_queue.hpp:12
virtual size_t size()=0
StatAbleQueue()
Definition: statable_queue.hpp:11
boost::shared_ptr< StatAbleQueue > sharedStatAbleQ
Definition: statable_queue.hpp:20
Definition: statable_queue.hpp:8