diff options
Diffstat (limited to 'Swiften/Roster/RosterStorage.h')
-rw-r--r-- | Swiften/Roster/RosterStorage.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Swiften/Roster/RosterStorage.h b/Swiften/Roster/RosterStorage.h index c7e92d2..1c1461d 100644 --- a/Swiften/Roster/RosterStorage.h +++ b/Swiften/Roster/RosterStorage.h @@ -1,22 +1,22 @@ /* - * Copyright (c) 2011 Isode Limited. + * Copyright (c) 2011-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once -#include <boost/shared_ptr.hpp> +#include <memory> #include <Swiften/Base/API.h> #include <Swiften/Elements/RosterPayload.h> namespace Swift { - class SWIFTEN_API RosterStorage { - public: - virtual ~RosterStorage(); + class SWIFTEN_API RosterStorage { + public: + virtual ~RosterStorage(); - virtual boost::shared_ptr<RosterPayload> getRoster() const = 0; - virtual void setRoster(boost::shared_ptr<RosterPayload>) = 0; - }; + virtual std::shared_ptr<RosterPayload> getRoster() const = 0; + virtual void setRoster(std::shared_ptr<RosterPayload>) = 0; + }; } |