template class axl::mem::ExecutableBlockArena

#include <axl_mem_ExecutableBlockArena.h>

template <typename T>
class ExecutableBlockArena
{
public:
    // construction

    ExecutableBlockArena(size_t allocMultiplier = 1);
    ~ExecutableBlockArena();

    // methods

    T*
    allocate();

    void
    free();

    void
    detach();
};