ofen/include/of_path.h

17 lines
257 B
C++

#ifndef OFEN_PATH_HEADER
#define OFEN_PATH_HEADER
#include "of_def.hpp"
namespace ofen {
class COfPath
{
public:
COfPath();
~COfPath();
public:
static bool is_same_path(const ofString& pa, const ofString& pb);
};
}; // namespace ofen
#endif