diff options
Diffstat (limited to '')
| -rw-r--r-- | lang/cpp/src/decryptionresult.h | 7 | 
1 files changed, 3 insertions, 4 deletions
| diff --git a/lang/cpp/src/decryptionresult.h b/lang/cpp/src/decryptionresult.h index 2374cbba..60b78d9c 100644 --- a/lang/cpp/src/decryptionresult.h +++ b/lang/cpp/src/decryptionresult.h @@ -27,11 +27,10 @@  #include "result.h"  #include "gpgmepp_export.h" -#include <boost/shared_ptr.hpp> -  #include <vector>  #include <algorithm>  #include <iosfwd> +#include <memory>  namespace GpgME  { @@ -84,7 +83,7 @@ public:  private:      class Private;      void init(gpgme_ctx_t ctx); -    boost::shared_ptr<Private> d; +    std::shared_ptr<Private> d;  };  GPGMEPP_EXPORT std::ostream &operator<<(std::ostream &os, const DecryptionResult &result); @@ -119,7 +118,7 @@ public:  private:      class Private; -    boost::shared_ptr<Private> d; +    std::shared_ptr<Private> d;  };  GPGMEPP_EXPORT std::ostream &operator<<(std::ostream &os, const DecryptionResult::Recipient &reci); | 
