27 #ifndef HYPERTABLE_PATH_H
28 #define HYPERTABLE_PATH_H
30 #include <boost/version.hpp>
31 #include <boost/filesystem.hpp>
45 class Path :
public boost::filesystem::path {
46 typedef boost::filesystem::path
Parent;
51 Path(
const char *s) : Parent(s) { }
52 Path(
const Parent &path) : Parent(path) { }
55 Parent::operator=(path);
59 #if BOOST_VERSION < 103600
70 #endif // HYPERTALBE_FILESYSTEM_H
std::string String
A String is simply a typedef to std::string.
boost::filesystem::path Parent
Compatibility class for boost::filesystem::path.
bool has_parent_path() const
Path & operator=(const Parent &path)
A String class based on std::string.