LCOV - code coverage report
Current view: top level - lang/cpp/src - keylistresult.h (source / functions) Hit Total Coverage
Test: coverage.info Lines: 8 8 100.0 %
Date: 2016-09-12 13:07:23 Functions: 4 4 100.0 %

          Line data    Source code
       1             : /*
       2             :   keylistresult.h - wraps a gpgme keylist 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_KEYLISTRESULT_H__
      24             : #define __GPGMEPP_KEYLISTRESULT_H__
      25             : 
      26             : #include "gpgmefw.h"
      27             : #include "result.h"
      28             : #include "gpgmepp_export.h"
      29             : 
      30             : #include <memory>
      31             : 
      32             : namespace GpgME
      33             : {
      34             : 
      35             : class Error;
      36             : 
      37         129 : class GPGMEPP_EXPORT KeyListResult : public Result
      38             : {
      39             : public:
      40             :     KeyListResult();
      41             :     KeyListResult(gpgme_ctx_t ctx, int error);
      42             :     KeyListResult(gpgme_ctx_t ctx, const Error &error);
      43             :     explicit KeyListResult(const Error &err);
      44             :     KeyListResult(const Error &err, const _gpgme_op_keylist_result &res);
      45             : 
      46          16 :     const KeyListResult &operator=(KeyListResult other)
      47             :     {
      48          16 :         swap(other);
      49          16 :         return *this;
      50             :     }
      51          16 :     void swap(KeyListResult &other)
      52             :     {
      53          16 :         Result::swap(other);
      54             :         using std::swap;
      55          16 :         swap(this->d, other.d);
      56          16 :     }
      57             : 
      58             :     const KeyListResult &operator+=(const KeyListResult &other)
      59             :     {
      60             :         mergeWith(other);
      61             :         return *this;
      62             :     }
      63             : 
      64             :     void mergeWith(const KeyListResult &other);
      65             : 
      66             :     bool isNull() const;
      67             : 
      68             :     bool isTruncated() const;
      69             : 
      70             : private:
      71             :     void detach();
      72             :     void init(gpgme_ctx_t ctx);
      73             :     class Private;
      74             :     std::shared_ptr<Private> d;
      75             : };
      76             : 
      77             : }
      78             : 
      79             : GPGMEPP_MAKE_STD_SWAP_SPECIALIZATION(KeyListResult)
      80             : 
      81             : #endif // __GPGMEPP_KEYLISTRESULT_H__

Generated by: LCOV version 1.11