Grindstone Game Engine
v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
StackAllocator.hpp
1
#pragma once
2
3
namespace
Grindstone::Memory::Allocators {
11
class
StackAllocator
{
12
public
:
13
bool
Initialize(
size_t
size);
14
bool
Allocate(
size_t
size);
15
};
16
}
Grindstone::Memory::Allocators::StackAllocator
A stack allocator where memory can only be deallocated in order (LIFO).
Definition
StackAllocator.hpp:11
sources
code
Common
Memory
Allocators
StackAllocator.hpp
Generated by
1.12.0