@@ -48,11 +48,11 @@ namespace nta
48
48
* Constructor.
49
49
*
50
50
* @param region
51
- * The region that this Output object belongs to.
51
+ * The region that the output belongs to.
52
52
* @param type
53
53
* The type of the output, TODO
54
54
* @param isRegionLevel
55
- * Whether the Output object is region level, i.e. TODO
55
+ * Whether the output is region level, i.e. TODO
56
56
*/
57
57
Output (Region& region, NTA_BasicType type, bool isRegionLevel);
58
58
@@ -62,20 +62,20 @@ namespace nta
62
62
~Output ();
63
63
64
64
/* *
65
- * Set the name for the Output object .
65
+ * Set the name for the output .
66
66
*
67
67
* Output need to know their own name for error messages.
68
68
*
69
69
* @param name
70
- * The name of the Output object
70
+ * The name of the output
71
71
*/
72
72
void setName (const std::string& name);
73
73
74
74
/* *
75
- * Get the name of the Output object .
75
+ * Get the name of the output .
76
76
*
77
77
* @return
78
- * The name of the Output object
78
+ * The name of the output
79
79
*/
80
80
const std::string& getName () const ;
81
81
@@ -107,7 +107,7 @@ namespace nta
107
107
addLink (Link* link);
108
108
109
109
/* *
110
- * Removing an existing link from the Output object .
110
+ * Removing an existing link from the output .
111
111
*
112
112
* @note Called only by Input.removeLink() even if triggered by
113
113
* Network.removeRegion() while removing the region that contains us.
@@ -119,19 +119,19 @@ namespace nta
119
119
removeLink (Link*);
120
120
121
121
/* *
122
- * Tells whether the Output object has outgoing links, i.e. TODO
122
+ * Tells whether the output has outgoing links, i.e. TODO
123
123
*
124
124
* @note We cannot delete a region if there are any outgoing links
125
125
* This allows us to check in Network.removeRegion() and Network.~Network().
126
126
* @returns
127
- * Whether the Output object has outgoing links
127
+ * Whether the output has outgoing links
128
128
*/
129
129
bool
130
130
hasOutgoingLinks ();
131
131
132
132
/* *
133
133
*
134
- * Get the data of the Output object .
134
+ * Get the data of the output .
135
135
*
136
136
* @returns
137
137
* A constant reference to the data of the output as an @c Array
@@ -144,20 +144,20 @@ namespace nta
144
144
145
145
/* *
146
146
*
147
- * Tells whether the Output object is region level, i.e. TODO
147
+ * Tells whether the output is region level, i.e. TODO
148
148
*
149
149
* @returns
150
- * Whether the Output object is region level, i.e. TODO
150
+ * Whether the output is region level, i.e. TODO
151
151
*/
152
152
bool
153
153
isRegionLevel () const ;
154
154
155
155
/* *
156
156
*
157
- * Get the Region that this Output object belongs to.
157
+ * Get the Region that the output belongs to.
158
158
*
159
159
* @returns
160
- * The mutable reference to the Region that this Output object belongs to
160
+ * The mutable reference to the Region that the output belongs to
161
161
*/
162
162
Region&
163
163
getRegion () const ;
0 commit comments