aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/sdktool/addvalueoperation.h
blob: bbadcaa9af1f21684673ace87cd7a9c1ca37c4d5 (plain)
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
30
31
32
33
34
35
// Copyright (C) 2019 The Qt Company Ltd.
// Copyright (C) 2019 Christoph Schlosser, B/S/H/ <christoph.schlosser@bshg.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "operation.h"

class AddValueData
{
public:
    bool appendListToMap(QVariantMap &map) const;

    QString m_key;
    QVariantList m_values;
};

class AddValueOperation : public Operation, public AddValueData
{
public:
    QString name() const final;
    QString helpText() const final;
    QString argumentsHelpText() const final;

    bool setArguments(const QStringList &args) final;

    int execute() const final;

#ifdef WITH_TESTS
    static void unittest();
#endif

private:
    QString m_file;
};