Atoms Crowd  7.0.0
StackAllocator.h
1 #pragma once
2 #include <ToolchefsSTL/Globals.h>
3 #include "Allocator.h"
4 
5 namespace ToolchefsSTL
6 {
7  class TOOLCHEFSSTL_EXPORT StackAllocator : public Allocator
8  {
9  public:
10  void* malloc(size_t size) final;
11 
12  void free(void* ptr) final;
13  };
14 }
Definition: Allocator.h:10
Definition: StackAllocator.h:8