Renamed baseoperation for baseop

This commit is contained in:
Alejandro Saucedo 2020-08-17 07:43:28 +01:00
parent 1ddd9f2bc4
commit 52ec836de8
4 changed files with 47 additions and 47 deletions

View file

@ -1,30 +0,0 @@
#pragma once
#include <string>
#include <vulkan/vulkan.h>
#include <vulkan/vulkan.hpp>
namespace kp {
class BaseOperator
{
private:
public:
BaseOperator();
BaseOperator(std::shared_ptr<vk::CommandBuffer> commandBuffer);
virtual ~BaseOperator();
void init(std::string one, std::string two);
void record();
private:
std::shared_ptr<vk::Device> mDevice;
std::shared_ptr<vk::CommandBuffer> mCommandBuffer;
};
} // End namespace kp