28 lines
296 B
C++
28 lines
296 B
C++
|
#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;
|
||
|
}
|