Database: Added location accessor

This commit is contained in:
Paul Beckingham 2016-03-19 09:00:07 -04:00
parent b2f470d113
commit 2d701b768b
2 changed files with 7 additions and 0 deletions

View file

@ -59,6 +59,12 @@ void Database::initialize (const std::string& location)
// TODO If there is no data file named YYYY—MM.data, then create it.
}
////////////////////////////////////////////////////////////////////////////////
std::string Database::location () const
{
return _location;
}
////////////////////////////////////////////////////////////////////////////////
std::string Database::dump () const
{