diff options
| author | Vincent Richard <[email protected]> | 2008-10-12 12:05:28 +0200 |
|---|---|---|
| committer | Vincent Richard <[email protected]> | 2008-10-12 12:05:28 +0200 |
| commit | 3f4226eaac5d0d30be1f4ca5d5cf010c98a7ce7d (patch) | |
| tree | 1968196db0d6ae27fd70d0732ff3defed0efb61f /tests/testUtils.hpp | |
| parent | Encode '?' characters to avoid breaking QP encoding (Zarafa). (diff) | |
| download | vmime-3f4226eaac5d0d30be1f4ca5d5cf010c98a7ce7d.tar.gz vmime-3f4226eaac5d0d30be1f4ca5d5cf010c98a7ce7d.zip | |
Fixed compilation warnings.
Diffstat (limited to 'tests/testUtils.hpp')
| -rw-r--r-- | tests/testUtils.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/testUtils.hpp b/tests/testUtils.hpp index c2185a08..42e88795 100644 --- a/tests/testUtils.hpp +++ b/tests/testUtils.hpp @@ -208,12 +208,12 @@ public: void connect(const vmime::string& address, const vmime::port_t port); void disconnect(); - const bool isConnected() const; + bool isConnected() const; void receive(vmime::string& buffer); void send(const vmime::string& buffer); - const int receiveRaw(char* buffer, const int count); + int receiveRaw(char* buffer, const int count); void sendRaw(const char* buffer, const int count); /** Send data to client. @@ -268,7 +268,7 @@ public: void onDataReceived(); const vmime::string getNextLine(); - const bool haveMoreLines() const; + bool haveMoreLines() const; virtual void processCommand() = 0; @@ -285,9 +285,9 @@ public: testTimeoutHandler(const unsigned int delay = 3); - const bool isTimeOut(); + bool isTimeOut(); void resetTimeOut(); - const bool handleTimeOut(); + bool handleTimeOut(); private: |
