OpenASIP  2.0
Vlnv.cc
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.cc
26  *
27  * Implementation of Vlnv struct.
28  *
29  * @author Otto Esko 2010 (otto.esko-no.spam-tut.fi)
30  * @note rating: red
31  */
32 #include "Vlnv.hh"
33 
34 IPXact::Vlnv::Vlnv(): vendor(""), library(""), name(""), version("") {
35 }
36 
38  TCEString vendor,
39  TCEString library,
40  TCEString name,
41  TCEString version):
42  vendor(vendor), library(library), name(name), version(version) {
43 }
44 
45 IPXact::Vlnv::Vlnv(const Vlnv& old) {
46 
47  vendor = old.vendor;
48  library = old.library;
49  name = old.name;
50  version = old.version;
51 }
52 
53 bool
55 
56  return (vendor == other.vendor &&
57  library == other.library &&
58  name == other.name &&
59  version == other.version);
60 }
61 
62 bool
64 
65  return !(vendor == other.vendor &&
66  library == other.library &&
67  name == other.name &&
68  version == other.version);
69 }
70 
Vlnv.hh
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
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
TCEString
Definition: TCEString.hh:53
IPXact::Vlnv::name
TCEString name
Entity name.
Definition: Vlnv.hh:60