#ifndef __VK_COMMAND_POOL_HPP #define __VK_COMMAND_POOL_HPP #include "./object.hpp" namespace vk { struct command_pool : public owned { void reset (const device&, VkCommandPoolResetFlags); }; } #endif