Blame lang/cpp/src/defaultassuantransaction.h

Packit d7e8d0
/*
Packit d7e8d0
  defaultassuantransaction.h - default Assuan Transaction that just stores data and status lines
Packit d7e8d0
  Copyright (C) 2009 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
#ifndef __GPGMEPP_DEFAULTASSUANTRANSACTION_H__
Packit d7e8d0
#define __GPGMEPP_DEFAULTASSUANTRANSACTION_H__
Packit d7e8d0
Packit d7e8d0
#include <interfaces/assuantransaction.h>
Packit d7e8d0
Packit d7e8d0
#include <string>
Packit d7e8d0
#include <vector>
Packit d7e8d0
#include <utility>
Packit d7e8d0
Packit d7e8d0
namespace GpgME
Packit d7e8d0
{
Packit d7e8d0
Packit d7e8d0
class GPGMEPP_EXPORT DefaultAssuanTransaction : public AssuanTransaction
Packit d7e8d0
{
Packit d7e8d0
public:
Packit d7e8d0
    explicit DefaultAssuanTransaction();
Packit d7e8d0
    ~DefaultAssuanTransaction();
Packit d7e8d0
Packit d7e8d0
    const std::vector< std::pair<std::string, std::string> > &statusLines() const
Packit d7e8d0
    {
Packit d7e8d0
        return m_status;
Packit d7e8d0
    }
Packit d7e8d0
    std::vector<std::string> statusLine(const char *tag) const;
Packit d7e8d0
    std::string firstStatusLine(const char *tag) const;
Packit d7e8d0
Packit d7e8d0
    const std::string &data() const
Packit d7e8d0
    {
Packit d7e8d0
        return m_data;
Packit d7e8d0
    }
Packit d7e8d0
Packit d7e8d0
private:
Packit d7e8d0
    /* reimp */ Error data(const char *data, size_t datalen);
Packit d7e8d0
    /* reimp */ Data inquire(const char *name, const char *args, Error &err;;
Packit d7e8d0
    /* reimp */ Error status(const char *status, const char *args);
Packit d7e8d0
Packit d7e8d0
private:
Packit d7e8d0
    std::vector< std::pair<std::string, std::string> > m_status;
Packit d7e8d0
    std::string m_data;
Packit d7e8d0
};
Packit d7e8d0
Packit d7e8d0
} // namespace GpgME
Packit d7e8d0
Packit d7e8d0
#endif // __GPGMEPP_DEFAULTASSUANTRANSACTION_H__