aboutsummaryrefslogtreecommitdiffstats
path: root/vmime/security/sasl/SASLAuthenticator.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'vmime/security/sasl/SASLAuthenticator.hpp')
-rw-r--r--vmime/security/sasl/SASLAuthenticator.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/vmime/security/sasl/SASLAuthenticator.hpp b/vmime/security/sasl/SASLAuthenticator.hpp
index 56588fc8..9f1881f5 100644
--- a/vmime/security/sasl/SASLAuthenticator.hpp
+++ b/vmime/security/sasl/SASLAuthenticator.hpp
@@ -64,15 +64,15 @@ public:
* @return ordered list of mechanism to use among the available
* mechanisms (from the first to try to the last)
*/
- virtual const std::vector <ref <SASLMechanism> > getAcceptableMechanisms
- (const std::vector <ref <SASLMechanism> >& available,
- ref <SASLMechanism> suggested) const = 0;
+ virtual const std::vector <shared_ptr <SASLMechanism> > getAcceptableMechanisms
+ (const std::vector <shared_ptr <SASLMechanism> >& available,
+ shared_ptr <SASLMechanism> suggested) const = 0;
/** Set the SASL session which is using this authenticator.
*
* @param sess SASL session
*/
- virtual void setSASLSession(ref <SASLSession> sess) = 0;
+ virtual void setSASLSession(shared_ptr <SASLSession> sess) = 0;
/** Set the SASL mechanism which has been selected for the
* SASL authentication process. This may be called several times
@@ -81,7 +81,7 @@ public:
*
* @param mech SASL mechanism
*/
- virtual void setSASLMechanism(ref <SASLMechanism> mech) = 0;
+ virtual void setSASLMechanism(shared_ptr <SASLMechanism> mech) = 0;
};