diff options
author | Werner Koch <[email protected]> | 2016-08-23 17:50:01 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-08-24 12:15:58 +0000 |
commit | e20b0f0201543834f15c5d50cd3b2ece69a35d70 (patch) | |
tree | f302e7257752d117d534df052186b22fc18743c8 /lang/cpp/src/Makefile.am | |
parent | Qt: Adapt (disabled) tofuinfo test to new API (diff) | |
download | gpgme-e20b0f0201543834f15c5d50cd3b2ece69a35d70.tar.gz gpgme-e20b0f0201543834f15c5d50cd3b2ece69a35d70.zip |
cpp: Get rid of AssuanResult due to its deprecation.
* lang/cpp/src/assuanresult.cpp: Remove.
* lang/cpp/src/assuanresult.h: Remove.
* lang/cpp/src/Makefile.am: Remove these files.
* lang/cpp/src/context.cpp: Remove header assuanresult.h
(assuanTransact): Change return type to Error. Use
gpgme_op_assuan_transact_ext.
(startAssuanTransaction): Change return type to Error.
(assuanResult): Remove
* lang/cpp/src/context.h (assuanResult): Adjust for changes.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'lang/cpp/src/Makefile.am')
-rw-r--r-- | lang/cpp/src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/cpp/src/Makefile.am b/lang/cpp/src/Makefile.am index 188585a7..e65a8752 100644 --- a/lang/cpp/src/Makefile.am +++ b/lang/cpp/src/Makefile.am @@ -25,7 +25,7 @@ lib_LTLIBRARIES = libgpgmepp.la main_sources = \ exception.cpp context.cpp key.cpp trustitem.cpp data.cpp callbacks.cpp \ - eventloopinteractor.cpp editinteractor.cpp assuanresult.cpp \ + eventloopinteractor.cpp editinteractor.cpp \ keylistresult.cpp keygenerationresult.cpp importresult.cpp \ decryptionresult.cpp verificationresult.cpp \ signingresult.cpp encryptionresult.cpp \ @@ -36,7 +36,7 @@ main_sources = \ vfsmountresult.cpp configuration.cpp tofuinfo.cpp gpgmepp_headers = \ - assuanresult.h configuration.h context.h data.h decryptionresult.h \ + configuration.h context.h data.h decryptionresult.h \ defaultassuantransaction.h editinteractor.h encryptionresult.h \ engineinfo.h error.h eventloopinteractor.h exception.h global.h \ gpgadduserideditinteractor.h gpgagentgetinfoassuantransaction.h \ |