diff options
Diffstat (limited to 'vmime/platforms/windows/windowsSocket.hpp')
-rw-r--r-- | vmime/platforms/windows/windowsSocket.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vmime/platforms/windows/windowsSocket.hpp b/vmime/platforms/windows/windowsSocket.hpp index db3e6323..4c4344d8 100644 --- a/vmime/platforms/windows/windowsSocket.hpp +++ b/vmime/platforms/windows/windowsSocket.hpp @@ -45,7 +45,7 @@ class windowsSocket : public vmime::net::socket public: windowsSocket(); - windowsSocket(ref <vmime::net::timeoutHandler> th); + windowsSocket(shared_ptr <vmime::net::timeoutHandler> th); ~windowsSocket(); public: @@ -83,7 +83,7 @@ protected: private: - ref <vmime::net::timeoutHandler> m_timeoutHandler; + shared_ptr <vmime::net::timeoutHandler> m_timeoutHandler; char m_buffer[65536]; SOCKET m_desc; @@ -99,8 +99,8 @@ class windowsSocketFactory : public vmime::net::socketFactory { public: - ref <vmime::net::socket> create(); - ref <vmime::net::socket> create(ref <vmime::net::timeoutHandler> th); + shared_ptr <vmime::net::socket> create(); + shared_ptr <vmime::net::socket> create(shared_ptr <vmime::net::timeoutHandler> th); }; |