.. _program_listing_file_Src_GraphicsEngineVulkan_memory_Allocator.hpp: Program Listing for File Allocator.hpp ====================================== |exhale_lsh| :ref:`Return to documentation for file ` (``Src/GraphicsEngineVulkan/memory/Allocator.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include #include #include namespace Kataglyphis { class Allocator { public: Allocator(); Allocator(const VkDevice &device, const VkPhysicalDevice &physicalDevice, const VkInstance &instance); void cleanUp(); ~Allocator(); private: VmaAllocator vmaAllocator; }; }// namespace Kataglyphis