diff options
Diffstat (limited to '')
| -rw-r--r-- | lang/qt/src/downloadjob.h | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/lang/qt/src/downloadjob.h b/lang/qt/src/downloadjob.h index 4c1ee981..757d76ed 100644 --- a/lang/qt/src/downloadjob.h +++ b/lang/qt/src/downloadjob.h @@ -38,16 +38,13 @@  #include <QtCore/QByteArray> +#include <memory> +  namespace GpgME  {  class Error;  } -namespace boost -{ -template <typename T> class shared_ptr; -} -  class QStringList;  class QIODevice;  class QByteArray; @@ -86,7 +83,7 @@ public:         passed as the second argument of result().      */      virtual GpgME::Error start(const QByteArray &fingerprint, -                               const boost::shared_ptr<QIODevice> &keyData) = 0; +                               const std::shared_ptr<QIODevice> &keyData) = 0;      /**         Starts the download operation. \a fingerprints is a list of | 
