File: cliplugin.h

package info (click to toggle)
ark 4%3A25.12.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,376 kB
  • sloc: cpp: 19,286; xml: 449; ansic: 244; makefile: 5; sh: 5
file content (29 lines) | stat: -rw-r--r-- 695 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
    SPDX-FileCopyrightText: 2008 Claudio Bantaloukas <rockdreamer@gmail.com>
    SPDX-FileCopyrightText: 2007 Henrique Pinto <henrique.pinto@kdemail.net>

    SPDX-License-Identifier: GPL-2.0-or-later
*/

#ifndef CLIPLUGIN_H
#define CLIPLUGIN_H

#include "kerfuffle/cliinterface.h"

using namespace Kerfuffle;

class CliPlugin : public CliInterface
{
public:
    explicit CliPlugin(QObject *parent = 0, const QVariantList &args = QVariantList());
    virtual ~CliPlugin();

    virtual ParameterList parameterList() const;
    bool readListLine(const QString &line);

private:
    bool m_isFirstLine, m_incontent, m_isPasswordProtected;
    QString m_entryFilename;
};

#endif // CLIPLUGIN_H