diff options
Diffstat (limited to 'Slimber/FileVCardCollection.h')
-rw-r--r-- | Slimber/FileVCardCollection.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Slimber/FileVCardCollection.h b/Slimber/FileVCardCollection.h index c05c4f4..ff4a91b 100644 --- a/Slimber/FileVCardCollection.h +++ b/Slimber/FileVCardCollection.h @@ -6,8 +6,9 @@ #pragma once +#include <memory> + #include <boost/filesystem.hpp> -#include <boost/shared_ptr.hpp> #include <Slimber/VCardCollection.h> @@ -16,8 +17,8 @@ namespace Swift { public: FileVCardCollection(boost::filesystem::path dir); - boost::shared_ptr<VCard> getOwnVCard() const; - void setOwnVCard(boost::shared_ptr<VCard> vcard); + std::shared_ptr<VCard> getOwnVCard() const; + void setOwnVCard(std::shared_ptr<VCard> vcard); private: boost::filesystem::path vcardsPath; |