diff options
Diffstat (limited to 'vmime/contentHandler.hpp')
-rw-r--r-- | vmime/contentHandler.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vmime/contentHandler.hpp b/vmime/contentHandler.hpp index f29753cd..303b08cf 100644 --- a/vmime/contentHandler.hpp +++ b/vmime/contentHandler.hpp @@ -91,13 +91,13 @@ public: * * @return length of data */ - virtual const string::size_type getLength() const = 0; + virtual string::size_type getLength() const = 0; /** Returns 'true' if data managed by this object is encoded. * * @return true if data is encoded, false otherwise */ - virtual const bool isEncoded() const = 0; + virtual bool isEncoded() const = 0; /** Returns the encoding used for data (or "binary" if not encoded). * @@ -109,7 +109,7 @@ public: * * @return true if no data is managed by this object, false otherwise */ - virtual const bool isEmpty() const = 0; + virtual bool isEmpty() const = 0; }; |