21FilePath::operator==(
const FilePath& other)
23 if (this->my_string == other.my_string)
30FilePath::operator==(
const std::string& other)
32 if (this->my_string == other)
39FilePath::operator=(
const FilePath& other)
41 this->my_string = other.my_string;
42 this->separator = other.separator;
47FilePath::operator=(
const std::string& other)
50 this->initSeparator();
54FilePath::initSeparator()
56#if defined(__OS_VAX__)
58#elif defined(__OS_WIN__)
60#elif defined(__OS_MAC__)
68FilePath::get_string()
const
std::string my_string
This is the string holding the data.
Definition FilePath.h:143