develop classes

This commit is contained in:
ProgramSnail 2021-03-24 20:31:44 +03:00
parent 9be0f50790
commit 580ef8ac3c
15 changed files with 62 additions and 22 deletions

View file

@ -1,14 +1,16 @@
#include <string>
#include "unit_module.hpp"
#pragma ONCE
#pragma once
namespace unit {
class ModuleBuilder {
private:
public:
ModuleBuilder();
Module create();
void config(const std::string& file);
};
}