-
Notifications
You must be signed in to change notification settings - Fork 0
/
RteCprjTarget.h
46 lines (42 loc) · 1.26 KB
/
RteCprjTarget.h
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
36
37
38
39
40
41
42
43
44
45
46
#ifndef RteCprjTarget_H
#define RteCprjTarget_H
/******************************************************************************/
/* RTE - CMSIS Run-Time Environment */
/******************************************************************************/
/** @file RteCprjTarget.h
* @brief CMSIS RTE for *.cprj files
*/
/******************************************************************************/
/*
* Copyright (c) 2020-2021 Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
/******************************************************************************/
#include "RteTarget.h"
/**
* @brief class representing target specified in cprj project
*/
class RteCprjTarget : public RteTarget
{
public:
/**
* @brief constructor
* @param parent pointer to the parent of this instance
* @param filteredModel CMSIS RTE data model filtered for this target
* @param name target name
* @param attributes collection of target attributes
*/
RteCprjTarget(RteItem* parent, RteModel* filteredModel, const std::string& name,
const std::map<std::string, std::string>& attributes);
/**
* @brief destructor
*/
~RteCprjTarget() override;
public:
/**
* @brief clean up this object
*/
void Clear() override;
};
#endif // RteCprjTarget_H