cpp: Expose skipped_v3_keys

* lang/cpp/src/importresult.cpp,
 lang/cpp/src/importresult.h (ImportResult::numV3KeysSkipped): New.

--
GnuPG-Bug-Id: T3776
This commit is contained in:
Andre Heinecke 2018-03-15 16:21:00 +01:00
parent a630a1e3e7
commit ad95288d3b
No known key found for this signature in database
GPG Key ID: 2978E9D40CBABA5C
3 changed files with 7 additions and 0 deletions

1
NEWS
View File

@ -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)
-------------------------------------------------

View File

@ -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);

View File

@ -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;