Skip to content

Commit

Permalink
Update ElogManager.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
flagarde authored Jul 26, 2021
1 parent 5b066bd commit d8e0fec
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions source/ElogManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ ElogEntry ElogManager::createEntry()
return std::move(entry);
}

std::string ElogManager::getPath()
{
return m_Conf.getPath();
}

std::string ElogManager::getConfigFile()
{
return m_Conf.getConfigFile();
}

void ElogManager::setPath(const std::string& path)
{
m_Conf.setPath(path);
Expand Down

0 comments on commit d8e0fec

Please sign in to comment.