ofen/src/of_path.cpp

19 lines
253 B
C++
Raw Normal View History

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