2024-11-14 16:04:54 +08:00
|
|
|
#include "of_path.h"
|
|
|
|
#include <filesystem>
|
|
|
|
|
|
|
|
namespace fs = std::filesystem;
|
|
|
|
namespace ofen {
|
|
|
|
COfPath::COfPath()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
COfPath::~COfPath()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-11-15 13:16:04 +08:00
|
|
|
bool COfPath::is_same_path(const ofString& pa, const ofString& pb)
|
2024-11-14 16:04:54 +08:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} // namespace ofen
|