1/*
2 keygenerationresult.h - wraps a gpgme keygen result
3 Copyright (C) 2004 Klarälvdalens Datakonsult AB
4
5 This file is part of GPGME++.
6
7 GPGME++ is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public
9 License as published by the Free Software Foundation; either
10 version 2 of the License, or (at your option) any later version.
11
12 GPGME++ is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU Library General Public License for more details.
16
17 You should have received a copy of the GNU Library General Public License
18 along with GPGME++; see the file COPYING.LIB. If not, write to the
19 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA.
21*/
22
23#ifndef __GPGMEPP_KEYGENERATIONRESULT_H__
24#define __GPGMEPP_KEYGENERATIONRESULT_H__
25
26#include <gpgme++/gpgmefw.h>
27#include <gpgme++/result.h>
28#include <gpgme++/gpgme++_export.h>
29
30#include <boost/shared_ptr.hpp>
31
32namespace GpgME {
33
34 class Error;
35
36 class GPGMEPP_EXPORT KeyGenerationResult : public Result {
37 public:
38 KeyGenerationResult();
39 KeyGenerationResult( gpgme_ctx_t ctx, int error );
40 KeyGenerationResult( gpgme_ctx_t ctx, const Error & error );
41 explicit KeyGenerationResult( const Error & err );
42
43 const KeyGenerationResult & operator=( KeyGenerationResult other ) {
44 swap( other );
45 return *this;
46 }
47
48 void swap( KeyGenerationResult & other ) {
49 Result::swap( other );
50 using std::swap;
51 swap( this->d, other.d );
52 }
53
54 bool isNull() const;
55
56 GPGMEPP_DEPRECATED bool primaryKeyGenerated() const {
57 return isPrimaryKeyGenerated();
58 }
59 GPGMEPP_DEPRECATED bool subkeyGenerated() const {
60 return isSubkeyGenerated();
61 }
62 bool isPrimaryKeyGenerated() const;
63 bool isSubkeyGenerated() const;
64 const char * fingerprint() const;
65
66 private:
67 class Private;
68 void init( gpgme_ctx_t ctx );
69 boost::shared_ptr<Private> d;
70 };
71
72}
73
74GPGMEPP_MAKE_STD_SWAP_SPECIALIZATION( KeyGenerationResult )
75
76#endif // __GPGMEPP_KEYGENERATIONRESULT_H__
77