aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/baremetal/debugservers/uvsc/xmlpropertygroup.h
blob: cbbd26cea1b21cdced7926b6f9330da92eedfdb0 (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
// Copyright (C) 2020 Denis Shienkov <denis.shienkov@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "xmlproperty.h"

#include <projectexplorer/abi.h>

#include <memory>

namespace BareMetal {

class ProductData;
class Project;

namespace Gen {
namespace Xml {

class PropertyGroup : public Property
{
public:
    explicit PropertyGroup(QByteArray name);
    PropertyGroup *appendPropertyGroup(QByteArray name);

    void accept(INodeVisitor *visitor) const final;
};

} // namespace Xml
} // namespace Gen
} // namespace BareMetal