diff options
Diffstat (limited to 'lang/cpp/src/configuration.h')
-rw-r--r-- | lang/cpp/src/configuration.h | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/lang/cpp/src/configuration.h b/lang/cpp/src/configuration.h index e6e13db4..288a410d 100644 --- a/lang/cpp/src/configuration.h +++ b/lang/cpp/src/configuration.h @@ -28,26 +28,19 @@ #include "gpgmefw.h" -#include <boost/shared_ptr.hpp> -#include <boost/weak_ptr.hpp> -#include <boost/type_traits/remove_pointer.hpp> -#if 0 -#include <boost/variant.hpp> -#include <boost/optional.hpp> -#endif - #include <iosfwd> #include <vector> #include <string> #include <algorithm> +#include <memory> namespace GpgME { namespace Configuration { -typedef boost::shared_ptr< boost::remove_pointer<gpgme_conf_comp_t>::type > shared_gpgme_conf_comp_t; -typedef boost::weak_ptr< boost::remove_pointer<gpgme_conf_comp_t>::type > weak_gpgme_conf_comp_t; +typedef std::shared_ptr< std::remove_pointer<gpgme_conf_comp_t>::type > shared_gpgme_conf_comp_t; +typedef std::weak_ptr< std::remove_pointer<gpgme_conf_comp_t>::type > weak_gpgme_conf_comp_t; class Argument; class Option; |