19 lines
259 B
C++
19 lines
259 B
C++
|
#include "of_path.h"
|
||
|
#include <filesystem>
|
||
|
|
||
|
namespace fs = std::filesystem;
|
||
|
namespace ofen {
|
||
|
COfPath::COfPath()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
COfPath::~COfPath()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
bool COfPath::is_same_path(const std::string& pa, const std::string& pb)
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
} // namespace ofen
|