diff options
Diffstat (limited to 'src/vmime/net/smtp/SMTPSTransport.hpp')
-rw-r--r-- | src/vmime/net/smtp/SMTPSTransport.hpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/vmime/net/smtp/SMTPSTransport.hpp b/src/vmime/net/smtp/SMTPSTransport.hpp index 7782f711..f19b3c55 100644 --- a/src/vmime/net/smtp/SMTPSTransport.hpp +++ b/src/vmime/net/smtp/SMTPSTransport.hpp @@ -1,6 +1,6 @@ // // VMime library (http://www.vmime.org) -// Copyright (C) 2002-2013 Vincent Richard <[email protected]> +// Copyright (C) 2002 Vincent Richard <[email protected]> // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as @@ -41,12 +41,15 @@ namespace smtp { /** SMTPS transport service. */ +class VMIME_EXPORT SMTPSTransport : public SMTPTransport { -class VMIME_EXPORT SMTPSTransport : public SMTPTransport -{ public: - SMTPSTransport(shared_ptr <session> sess, shared_ptr <security::authenticator> auth); + SMTPSTransport( + const shared_ptr <session>& sess, + const shared_ptr <security::authenticator>& auth + ); + ~SMTPSTransport(); const string getProtocolName() const; |