X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffs%2Fpath.h;h=82600dc35c28d5787f69b56f0af3b8b12af50f22;hp=5d0a5d353d4d465954b11ed9f7ff57a36aca5a5a;hb=5a32939eb6e576c223e1be5f80226d9e628a2398;hpb=7818b5ecb0a83126374896d7e678ca8aff9a1599 diff --git a/source/fs/path.h b/source/fs/path.h index 5d0a5d3..82600dc 100644 --- a/source/fs/path.h +++ b/source/fs/path.h @@ -10,7 +10,7 @@ namespace FS { enum { -#ifdef WIN32 +#ifdef _WIN32 DIRSEP = '\\' #else DIRSEP = '/' @@ -36,10 +36,18 @@ private: public: class Iterator { + public: + typedef PositionArray::difference_type difference_type; + typedef const std::string value_type; + typedef const std::string *pointer; + typedef const std::string &reference; + typedef std::input_iterator_tag iterator_category; + private: const Path *path; PositionArray::const_iterator iter; bool end; + std::string current; Iterator(const Path &, bool = false); public: @@ -47,10 +55,14 @@ public: static Iterator at_end(const Path &p) { return Iterator(p, true); } Iterator &operator++(); + Iterator operator++(int) { Iterator i = *this; ++*this; return i; } Iterator &operator--(); - std::string operator*() const; + const std::string &operator*() const { return current; } + const std::string *operator->() const { return ¤t; } bool operator==(const Iterator &i) const { return (iter==i.iter && end==i.end); } bool operator!=(const Iterator &i) const { return !(*this==i); } + private: + void update(); }; private: