stuff-from-scratch/src/database/Database.h

25 lines
289 B
C
Raw Normal View History

2020-05-02 07:31:03 +00:00
#pragma once
#include <memory>
#include <string>
class Database
{
std::string mPath;
public:
Database();
~Database();
static std::shared_ptr<Database> Create();
void SetPath(const std::string& path);
std::string GetPath();
};
using DatabasePtr = std::shared_ptr<Database>;