X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffs%2Fpath.h;h=c701e60f7fb97dbf507cf0295ea13adefb32aec1;hp=c3c599a9e03d0a0dae8b9e47187086b49b407d1a;hb=fbc986fca28ce01240718a7835ee7e4798b5d20d;hpb=dce2985e07e6184f000ef176451150710e21ee35 diff --git a/source/fs/path.h b/source/fs/path.h index c3c599a..c701e60 100644 --- a/source/fs/path.h +++ b/source/fs/path.h @@ -80,6 +80,12 @@ public: std::string operator[](int) const; bool operator==(const Path &) const; + bool operator<(const Path &) const; + bool operator>(const Path &) const; + bool operator<=(const Path &other) const { return !(*this>other); } + bool operator>=(const Path &other) const { return !(*this