diff options
Diffstat (limited to 'Slimber/VCardCollection.h')
-rw-r--r-- | Slimber/VCardCollection.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Slimber/VCardCollection.h b/Slimber/VCardCollection.h index 4e50848..50147ec 100644 --- a/Slimber/VCardCollection.h +++ b/Slimber/VCardCollection.h @@ -1,21 +1,21 @@ /* - * Copyright (c) 2010 Remko Tronçon - * Licensed under the GNU General Public License v3. - * See Documentation/Licenses/GPLv3.txt for more information. + * 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; + }; } |