17 lines
259 B
C++
17 lines
259 B
C++
#ifndef OFEN_PATH_HEADER
|
|
#define OFEN_PATH_HEADER
|
|
|
|
#include <string>
|
|
|
|
namespace ofen {
|
|
class COfPath
|
|
{
|
|
public:
|
|
COfPath();
|
|
~COfPath();
|
|
|
|
public:
|
|
static bool is_same_path(const std::string& pa, const std::string& pb);
|
|
};
|
|
}; // namespace ofen
|
|
#endif |