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

28 lines
296 B
C++
Raw Normal View History

2020-05-02 07:31:03 +00:00
#include "Database.h"
Database::Database()
: mPath()
{
}
Database::~Database()
{
}
std::shared_ptr<Database> Database::Create()
{
return std::make_shared<Database>();
}
void Database::SetPath(const std::string& path)
{
mPath = path;
}
std::string Database::GetPath()
{
return mPath;
}