Blame lang/cpp/src/trustitem.h

Packit d7e8d0
/*
Packit d7e8d0
  trustitem.h - wraps a gpgme trust item
Packit d7e8d0
  Copyright (C) 2003 Klarälvdalens Datakonsult AB
Packit d7e8d0
  2016 Bundesamt für Sicherheit in der Informationstechnik
Packit d7e8d0
  Software engineering by Intevation GmbH
Packit d7e8d0
Packit d7e8d0
  This file is part of GPGME.
Packit d7e8d0
Packit d7e8d0
  GPGME++ is free software; you can redistribute it and/or
Packit d7e8d0
  modify it under the terms of the GNU Library General Public
Packit d7e8d0
  License as published by the Free Software Foundation; either
Packit d7e8d0
  version 2 of the License, or (at your option) any later version.
Packit d7e8d0
Packit d7e8d0
  GPGME++ is distributed in the hope that it will be useful,
Packit d7e8d0
  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit d7e8d0
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit d7e8d0
  GNU Library General Public License for more details.
Packit d7e8d0
Packit d7e8d0
  You should have received a copy of the GNU Library General Public License
Packit d7e8d0
  along with GPGME++; see the file COPYING.LIB.  If not, write to the
Packit d7e8d0
  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Packit d7e8d0
  Boston, MA 02110-1301, USA.
Packit d7e8d0
*/
Packit d7e8d0
Packit d7e8d0
// -*- c++ -*-
Packit d7e8d0
#ifndef __GPGMEPP_TRUSTITEM_H__
Packit d7e8d0
#define __GPGMEPP_TRUSTITEM_H__
Packit d7e8d0
Packit d7e8d0
#include "gpgmefw.h"
Packit d7e8d0
#include <key.h>
Packit d7e8d0
#include "gpgmepp_export.h"
Packit d7e8d0
Packit d7e8d0
#include <algorithm>
Packit d7e8d0
Packit d7e8d0
namespace GpgME
Packit d7e8d0
{
Packit d7e8d0
Packit d7e8d0
class Context;
Packit d7e8d0
Packit d7e8d0
class GPGMEPP_EXPORT TrustItem
Packit d7e8d0
{
Packit d7e8d0
    friend class ::GpgME::Context;
Packit d7e8d0
public:
Packit Service 30b792
    explicit TrustItem(gpgme_trust_item_t item = nullptr);
Packit d7e8d0
    TrustItem(const TrustItem &other);
Packit d7e8d0
    virtual ~TrustItem();
Packit d7e8d0
Packit d7e8d0
    const TrustItem &operator=(TrustItem other)
Packit d7e8d0
    {
Packit d7e8d0
        swap(other);
Packit d7e8d0
        return *this;
Packit d7e8d0
    }
Packit d7e8d0
Packit d7e8d0
    void swap(TrustItem &other)
Packit d7e8d0
    {
Packit d7e8d0
        using std::swap;
Packit d7e8d0
        swap(this->d, other.d);
Packit d7e8d0
    }
Packit d7e8d0
Packit d7e8d0
    bool isNull() const;
Packit d7e8d0
Packit d7e8d0
    const char *keyID() const;
Packit d7e8d0
    const char *userID() const;
Packit d7e8d0
Packit d7e8d0
    const char *ownerTrustAsString() const;
Packit d7e8d0
    const char *validityAsString() const;
Packit d7e8d0
Packit d7e8d0
    int trustLevel() const;
Packit d7e8d0
Packit d7e8d0
    enum Type { Unknown = 0, Key = 1, UserID = 2 };
Packit d7e8d0
    Type type() const;
Packit d7e8d0
Packit d7e8d0
private:
Packit d7e8d0
    gpgme_trust_item_t impl() const;
Packit d7e8d0
    class Private;
Packit d7e8d0
    Private *d;
Packit d7e8d0
};
Packit d7e8d0
Packit d7e8d0
} // namepace GpgME
Packit d7e8d0
Packit d7e8d0
GPGMEPP_MAKE_STD_SWAP_SPECIALIZATION(TrustItem)
Packit d7e8d0
Packit d7e8d0
#endif // __GPGMEPP_TRUSTITEM_H__