summaryrefslogtreecommitdiff
path: root/src/include/depot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/depot.h')
-rw-r--r--src/include/depot.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/include/depot.h b/src/include/depot.h
index 844a987..bd4f743 100644
--- a/src/include/depot.h
+++ b/src/include/depot.h
@@ -38,10 +38,10 @@ namespace Binc {
//--
class iterator {
public:
- std::string operator * (void) const;
- void operator ++ (void);
- bool operator != (iterator) const;
- bool operator == (iterator) const;
+ std::string operator*(void) const;
+ void operator++(void);
+ bool operator!=(iterator) const;
+ bool operator==(iterator) const;
iterator(void);
iterator(const iterator &copy);
@@ -50,7 +50,7 @@ namespace Binc {
void deref(void);
- iterator &operator =(const iterator &copy);
+ iterator &operator=(const iterator &copy);
friend class Depot;
@@ -134,6 +134,7 @@ namespace Binc {
//--
MaildirPPDepot();
~MaildirPPDepot();
+
private:
std::string privateNamespace;
};