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:
parent
a630a1e3e7
commit
ad95288d3b
1
NEWS
1
NEWS
@ -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)
|
||||
-------------------------------------------------
|
||||
|
@ -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);
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user