diff options
| author | Andre Heinecke <[email protected]> | 2018-03-15 15:21:00 +0000 | 
|---|---|---|
| committer | Andre Heinecke <[email protected]> | 2018-03-15 15:23:18 +0000 | 
| commit | ad95288d3b3efc38998841add4fe658c84701f98 (patch) | |
| tree | 60bd39d4bc980c270f9e28d3778190a7debba10f | |
| parent | core: Parse skipped_v3_keys (diff) | |
| download | gpgme-ad95288d3b3efc38998841add4fe658c84701f98.tar.gz gpgme-ad95288d3b3efc38998841add4fe658c84701f98.zip | |
cpp: Expose skipped_v3_keys
* lang/cpp/src/importresult.cpp,
 lang/cpp/src/importresult.h (ImportResult::numV3KeysSkipped): New.
--
GnuPG-Bug-Id: T3776
| -rw-r--r-- | NEWS | 1 | ||||
| -rw-r--r-- | lang/cpp/src/importresult.cpp | 5 | ||||
| -rw-r--r-- | lang/cpp/src/importresult.h | 1 | 
3 files changed, 7 insertions, 0 deletions
| @@ -6,6 +6,7 @@ Noteworthy changes in version 1.10.1 (unreleased)   gpgme_import_result_t       EXTENDED: New field 'skipped_v3_keys'   cpp: Key::locate                     NEW.   cpp: Data::toString                  NEW. + cpp: ImportResult::numV3KeysSkipped  NEW.  Noteworthy changes in version 1.10.0 (2017-12-12)  ------------------------------------------------- diff --git a/lang/cpp/src/importresult.cpp b/lang/cpp/src/importresult.cpp index 8c35f9cc..dbb31d05 100644 --- a/lang/cpp/src/importresult.cpp +++ b/lang/cpp/src/importresult.cpp @@ -154,6 +154,11 @@ int GpgME::ImportResult::notImported() const      return d ? d->res.not_imported : 0 ;  } +int GpgME::ImportResult::numV3KeysSkipped() const +{ +    return d ? d->res.skipped_v3_keys : 0 ; +} +  GpgME::Import GpgME::ImportResult::import(unsigned int idx) const  {      return Import(d, idx); diff --git a/lang/cpp/src/importresult.h b/lang/cpp/src/importresult.h index 2f0e7f20..05476796 100644 --- a/lang/cpp/src/importresult.h +++ b/lang/cpp/src/importresult.h @@ -78,6 +78,7 @@ public:      int numSecretKeysUnchanged() const;      int notImported() const; +    int numV3KeysSkipped() const;      Import import(unsigned int idx) const;      std::vector<Import> imports() const; | 
