Commit 8268c2fe authored by Davis King's avatar Davis King

Added an operator != to the file and directory objects.

parent d53a37e7
...@@ -148,6 +148,10 @@ namespace dlib ...@@ -148,6 +148,10 @@ namespace dlib
const file& rhs const file& rhs
) const; ) const;
bool operator != (
const file& rhs
) const { return !(*this == rhs); }
inline bool operator < ( inline bool operator < (
const file& item const file& item
) const { return full_name() < item.full_name(); } ) const { return full_name() < item.full_name(); }
...@@ -311,6 +315,10 @@ namespace dlib ...@@ -311,6 +315,10 @@ namespace dlib
const directory& rhs const directory& rhs
) const; ) const;
bool operator != (
const directory& rhs
) const { return !(*this == rhs); }
inline bool operator < ( inline bool operator < (
const directory& item const directory& item
) const { return full_name() < item.full_name(); } ) const { return full_name() < item.full_name(); }
......
...@@ -153,6 +153,10 @@ namespace dlib ...@@ -153,6 +153,10 @@ namespace dlib
const file& rhs const file& rhs
) const; ) const;
bool operator != (
const file& rhs
) const { return !(*this == rhs); }
inline bool operator < ( inline bool operator < (
const file& item const file& item
) const { return full_name() < item.full_name(); } ) const { return full_name() < item.full_name(); }
...@@ -304,6 +308,10 @@ namespace dlib ...@@ -304,6 +308,10 @@ namespace dlib
const directory& rhs const directory& rhs
) const; ) const;
bool operator != (
const directory& rhs
) const { return !(*this == rhs); }
inline bool operator < ( inline bool operator < (
const directory& item const directory& item
) const { return full_name() < item.full_name(); } ) const { return full_name() < item.full_name(); }
......
...@@ -162,6 +162,17 @@ namespace dlib ...@@ -162,6 +162,17 @@ namespace dlib
- returns false - returns false
!*/ !*/
bool operator != (
const file& rhs
) const;
/*!
ensures
- if (*this and rhs represent the same file) then
- returns false
- else
- returns true
!*/
bool operator < ( bool operator < (
const file& item const file& item
) const; ) const;
...@@ -392,6 +403,17 @@ namespace dlib ...@@ -392,6 +403,17 @@ namespace dlib
- returns false - returns false
!*/ !*/
bool operator != (
const directory& rhs
) const;
/*!
ensures
- if (*this and rhs represent the same directory) then
- returns false
- else
- returns true
!*/
bool operator < ( bool operator < (
const directory& item const directory& item
) const; ) const;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment