diff options
Diffstat (limited to 'src/include/operators.h')
-rw-r--r-- | src/include/operators.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/include/operators.h b/src/include/operators.h index 66c7e2b..f6bb987 100644 --- a/src/include/operators.h +++ b/src/include/operators.h @@ -198,7 +198,12 @@ namespace Binc { class ListOperator : public Operator { protected: - enum MailboxFlags { DIR_SELECT = 0x01, DIR_MARKED = 0x02, DIR_NOINFERIORS = 0x04, DIR_LEAF = 0x08 }; + enum MailboxFlags { + DIR_SELECT = 0x01, + DIR_MARKED = 0x02, + DIR_NOINFERIORS = 0x04, + DIR_LEAF = 0x08 + }; std::map<std::string, unsigned int> cache; time_t cacheTimeout; @@ -351,7 +356,9 @@ namespace Binc { S_AND }; - static bool convertDate(const std::string &date, time_t &t, const std::string &delim = "-"); + static bool convertDate(const std::string &date, + time_t &t, + const std::string &delim = "-"); static bool convertDateHeader(const std::string &d_in, time_t &t); void order(void); |