Added an Allocator parameter to the event class template and added event<>::operator new/delete.

[SVN r30573]
This commit is contained in:
Andreas Huber 2005-08-13 23:43:56 +00:00
parent afa1295bc1
commit fc236c711e

View File

@ -10,8 +10,12 @@
#include <boost/statechart/event_base.hpp>
#include <boost/statechart/detail/rtti_policy.hpp>
#include <boost/statechart/detail/memory.hpp>
#include <boost/cast.hpp> // boost::polymorphic_downcast
#include <memory> // std::allocator
namespace boost
@ -22,11 +26,25 @@ namespace statechart
//////////////////////////////////////////////////////////////////////////////
template< class MostDerived >
template< class MostDerived, class Allocator = std::allocator< void > >
class event : public detail::rtti_policy::rtti_derived_type<
MostDerived, event_base >
{
// Compiler-generated copy constructor and copy assignment operator are fine
public:
//////////////////////////////////////////////////////////////////////////
// Compiler-generated copy constructor and copy assignment operator are
// fine
void * operator new( std::size_t size )
{
return detail::allocate< MostDerived, Allocator >( size );
}
void operator delete( void * pEvent )
{
detail::deallocate< MostDerived, Allocator >( pEvent );
}
protected:
//////////////////////////////////////////////////////////////////////////
event() {}