OpenASIP  2.0
ResourceElement.icc
Go to the documentation of this file.
1 /*
2  Copyright (c) 2002-2009 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 ResourceElement.icc
26  *
27  * Inline definitions of ResourceElement class.
28  *
29  * @author Mikael Lepistö 2003 (tmlepist-no.spam-cs.tut.fi)
30  *
31  * @note rating: yellow
32  */
33 
34 namespace TPEF {
35 
36 /**
37  * Returns type of the resource.
38  *
39  * @return Type of the resource.
40  */
41 inline ResourceElement::ResourceType
42 ResourceElement::type() const {
43  return type_;
44 }
45 
46 /**
47  * Sets type of the resource.
48  *
49  * @param Type of the resource.
50  */
51 inline void
52 ResourceElement::setType(ResourceType aType) {
53  type_ = aType;
54 }
55 
56 /**
57  * Returns unique identification code of the resource.
58  *
59  * @return Identification code.
60  */
61 inline HalfWord
62 ResourceElement::id() const {
63  return id_;
64 }
65 
66 /**
67  * Sets the identification code field.
68  *
69  * @param aId Identification numerical code to set.
70  */
71 inline void
72 ResourceElement::setId(HalfWord aId) {
73  id_ = aId;
74 }
75 
76 /**
77  * Returns info of the resource.
78  *
79  * @return Info of the resource.
80  */
81 inline Word
82 ResourceElement::info() const {
83  return info_;
84 }
85 
86 /**
87  * Sets info field.
88  *
89  * @param aInfo Info to set.
90  */
91 inline void
92 ResourceElement::setInfo(Word aInfo) {
93  info_ = aInfo;
94 }
95 
96 /**
97  * Returns name of the element.
98  *
99  * @return Name of the element.
100  */
101 inline Chunk*
102 ResourceElement::name() const {
103  return dynamic_cast<Chunk*>(name_->pointer());
104 }
105 
106 /**
107  * Sets name for the resource.
108  *
109  * @param aName Name for the resource.
110  */
111 inline void
112 ResourceElement::setName(ReferenceManager::SafePointer* aName) {
113  name_ = aName;
114 }
115 
116 
117 /**
118  * Sets name for the resource.
119  *
120  * @param aName Name for resource.
121  */
122 inline void
123 ResourceElement::setName(Chunk* aName) {
124  name_ = ReferenceManager::SafePointer::replaceReference(name_, aName);
125 }
126 
127 }