Skip to content
Snippets Groups Projects
Commit e49916b5 authored by Kasper Marstal's avatar Kasper Marstal
Browse files

ENH: Rename some functions in DataManager, new names feel more natural in use

parent 5596c036
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
const std::string
DataManager
::GetInputFullPath( const std::string filename ) const
::GetInputFile( const std::string filename ) const
{
const std::string path = this->GetInputDirectory() + this->GetFolderSeparator() + filename;
return path;
......@@ -14,7 +14,7 @@ DataManager
const std::string
DataManager
::GetOutputFullPath( const std::string filename ) const
::GetOutputFile( const std::string filename ) const
{
const std::string path = this->GetOutputDirectory() + this->GetFolderSeparator() + filename;
return path;
......@@ -22,7 +22,7 @@ DataManager
const std::string
DataManager
::GetBaselineFullPath( const std::string filename ) const
::GetBaselineFile( const std::string filename ) const
{
const std::string path = this->GetBaselineDirectory() + this->GetFolderSeparator() + filename;
return path;
......
......@@ -26,9 +26,9 @@ public:
std::string GetOutputDirectory( void ) const { return this->m_OutputDirectory; };
std::string GetBaselineDirectory( void ) const { return this->m_BaselineDirectory; };
const std::string GetInputFullPath( const std::string filename ) const;
const std::string GetOutputFullPath( const std::string filename ) const;
const std::string GetBaselineFullPath( const std::string filename ) const;
const std::string GetInputFile( const std::string filename ) const;
const std::string GetOutputFile( const std::string filename ) const;
const std::string GetBaselineFile( const std::string filename ) const;
std::string GetFolderSeparator() const
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment