aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/baremetal/debugservers/uvsc/xmlproject.h
blob: 7acbcfc100fa1f3eb9ac3bc7142f0edb43be4223 (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
// 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 <memory>

namespace BareMetal {
namespace Gen {
namespace Xml {

// Project

class Project : public Property
{
public:
    void accept(INodeVisitor *visitor) const final;
};

// ProjectOptions

class ProjectOptions : public Property
{
public:
    void accept(INodeVisitor *visitor) const final;
};

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