OpenASIP
2.0
src
applibs
PlatformIntegrator
Vlnv.hh
Go to the documentation of this file.
1
/*
2
Copyright (c) 2002-2011 Tampere University.
3
4
This file is part of TTA-Based Codesign Environment (TCE).
5
6
Permission is hereby granted, free of charge, to any person obtaining a
7
copy of this software and associated documentation files (the "Software"),
8
to deal in the Software without restriction, including without limitation
9
the rights to use, copy, modify, merge, publish, distribute, sublicense,
10
and/or sell copies of the Software, and to permit persons to whom the
11
Software is furnished to do so, subject to the following conditions:
12
13
The above copyright notice and this permission notice shall be included in
14
all copies or substantial portions of the Software.
15
16
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22
DEALINGS IN THE SOFTWARE.
23
*/
24
/**
25
* @file Vlnv.hh
26
*
27
* Declaration of Vlnv struct.
28
*
29
* @author Otto Esko 2010 (otto.esko-no.spam-tut.fi)
30
* @note rating: red
31
*/
32
#ifndef TTA_IP_XACT_VLNV_HH
33
#define TTA_IP_XACT_VLNV_HH
34
#include "
TCEString.hh
"
35
36
namespace
IPXact
{
37
38
/**
39
* Struct that models Vendor, Library, Name, Vendor
40
*/
41
struct
Vlnv
{
42
Vlnv
();
43
44
Vlnv
(
TCEString
vendor
,
45
TCEString
library
,
46
TCEString
name
,
47
TCEString
version
);
48
49
Vlnv
(
const
Vlnv
& old);
50
51
bool
operator==
(
const
Vlnv
& other);
52
53
bool
operator!=
(
const
Vlnv
& other);
54
55
/// Vendor name
56
TCEString
vendor
;
57
/// Library name
58
TCEString
library
;
59
/// Entity name
60
TCEString
name
;
61
/// Entity version
62
TCEString
version
;
63
};
64
65
}
66
#endif
IPXact::Vlnv
Definition:
Vlnv.hh:41
IPXact::Vlnv::version
TCEString version
Entity version.
Definition:
Vlnv.hh:62
IPXact::Vlnv::vendor
TCEString vendor
Vendor name.
Definition:
Vlnv.hh:56
TCEString.hh
IPXact::Vlnv::library
TCEString library
Library name.
Definition:
Vlnv.hh:58
IPXact::Vlnv::Vlnv
Vlnv()
Definition:
Vlnv.cc:34
IPXact::Vlnv::operator!=
bool operator!=(const Vlnv &other)
Definition:
Vlnv.cc:63
IPXact::Vlnv::operator==
bool operator==(const Vlnv &other)
Definition:
Vlnv.cc:54
IPXact
Definition:
Vlnv.hh:36
TCEString
Definition:
TCEString.hh:53
IPXact::Vlnv::name
TCEString name
Entity name.
Definition:
Vlnv.hh:60
Generated by
1.8.17