diff options
Diffstat (limited to 'Slimber/VCardCollection.h')
-rw-r--r-- | Slimber/VCardCollection.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Slimber/VCardCollection.h b/Slimber/VCardCollection.h index 0e7d27f..50147ec 100644 --- a/Slimber/VCardCollection.h +++ b/Slimber/VCardCollection.h @@ -1,21 +1,21 @@ /* - * Copyright (c) 2010 Isode Limited. + * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once -#include <boost/shared_ptr.hpp> +#include <memory> #include <Swiften/Elements/VCard.h> namespace Swift { - class VCardCollection { - public: - virtual ~VCardCollection(); + class VCardCollection { + public: + virtual ~VCardCollection(); - virtual boost::shared_ptr<VCard> getOwnVCard() const = 0; - virtual void setOwnVCard(boost::shared_ptr<VCard> vcard) = 0; - }; + virtual std::shared_ptr<VCard> getOwnVCard() const = 0; + virtual void setOwnVCard(std::shared_ptr<VCard> vcard) = 0; + }; } |