- Timestamp:
- 06/09/08 01:10:45 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Base/OSGDrawableStatsAttachmentBase.inl
r1193 r1288 86 86 //! Get the value of the DrawableStatsAttachment::_sfVertices field. 87 87 inline 88 const UInt32DrawableStatsAttachmentBase::getVertices(void) const88 UInt32 DrawableStatsAttachmentBase::getVertices(void) const 89 89 { 90 90 return _sfVertices.getValue(); 91 91 } 92 92 93 #ifdef OSG_1_GET_COMPAT94 inline95 UInt32 &DrawableStatsAttachmentBase::getVertices (void)96 {97 return this->editVertices ();98 }99 #endif100 101 93 //! Set the value of the DrawableStatsAttachment::_sfVertices field. 102 94 inline 103 void DrawableStatsAttachmentBase::setVertices(const UInt32 &value)95 void DrawableStatsAttachmentBase::setVertices(const UInt32 value) 104 96 { 105 97 editSField(VerticesFieldMask); … … 119 111 //! Get the value of the DrawableStatsAttachment::_sfPoints field. 120 112 inline 121 const UInt32DrawableStatsAttachmentBase::getPoints(void) const113 UInt32 DrawableStatsAttachmentBase::getPoints(void) const 122 114 { 123 115 return _sfPoints.getValue(); 124 116 } 125 117 126 #ifdef OSG_1_GET_COMPAT127 inline128 UInt32 &DrawableStatsAttachmentBase::getPoints (void)129 {130 return this->editPoints ();131 }132 #endif133 134 118 //! Set the value of the DrawableStatsAttachment::_sfPoints field. 135 119 inline 136 void DrawableStatsAttachmentBase::setPoints(const UInt32 &value)120 void DrawableStatsAttachmentBase::setPoints(const UInt32 value) 137 121 { 138 122 editSField(PointsFieldMask); … … 152 136 //! Get the value of the DrawableStatsAttachment::_sfLines field. 153 137 inline 154 const UInt32DrawableStatsAttachmentBase::getLines(void) const138 UInt32 DrawableStatsAttachmentBase::getLines(void) const 155 139 { 156 140 return _sfLines.getValue(); 157 141 } 158 142 159 #ifdef OSG_1_GET_COMPAT160 inline161 UInt32 &DrawableStatsAttachmentBase::getLines (void)162 {163 return this->editLines ();164 }165 #endif166 167 143 //! Set the value of the DrawableStatsAttachment::_sfLines field. 168 144 inline 169 void DrawableStatsAttachmentBase::setLines(const UInt32 &value)145 void DrawableStatsAttachmentBase::setLines(const UInt32 value) 170 146 { 171 147 editSField(LinesFieldMask); … … 185 161 //! Get the value of the DrawableStatsAttachment::_sfTriangles field. 186 162 inline 187 const UInt32DrawableStatsAttachmentBase::getTriangles(void) const163 UInt32 DrawableStatsAttachmentBase::getTriangles(void) const 188 164 { 189 165 return _sfTriangles.getValue(); 190 166 } 191 167 192 #ifdef OSG_1_GET_COMPAT193 inline194 UInt32 &DrawableStatsAttachmentBase::getTriangles (void)195 {196 return this->editTriangles ();197 }198 #endif199 200 168 //! Set the value of the DrawableStatsAttachment::_sfTriangles field. 201 169 inline 202 void DrawableStatsAttachmentBase::setTriangles(const UInt32 &value)170 void DrawableStatsAttachmentBase::setTriangles(const UInt32 value) 203 171 { 204 172 editSField(TrianglesFieldMask); … … 218 186 //! Get the value of the DrawableStatsAttachment::_sfProcessedAttributeBytes field. 219 187 inline 220 const UInt32DrawableStatsAttachmentBase::getProcessedAttributeBytes(void) const188 UInt32 DrawableStatsAttachmentBase::getProcessedAttributeBytes(void) const 221 189 { 222 190 return _sfProcessedAttributeBytes.getValue(); 223 191 } 224 192 225 #ifdef OSG_1_GET_COMPAT226 inline227 UInt32 &DrawableStatsAttachmentBase::getProcessedAttributeBytes(void)228 {229 return this->editProcessedAttributeBytes();230 }231 #endif232 233 193 //! Set the value of the DrawableStatsAttachment::_sfProcessedAttributeBytes field. 234 194 inline 235 void DrawableStatsAttachmentBase::setProcessedAttributeBytes(const UInt32 &value)195 void DrawableStatsAttachmentBase::setProcessedAttributeBytes(const UInt32 value) 236 196 { 237 197 editSField(ProcessedAttributeBytesFieldMask); … … 251 211 //! Get the value of the DrawableStatsAttachment::_sfStoredAttributeBytes field. 252 212 inline 253 const UInt32DrawableStatsAttachmentBase::getStoredAttributeBytes(void) const213 UInt32 DrawableStatsAttachmentBase::getStoredAttributeBytes(void) const 254 214 { 255 215 return _sfStoredAttributeBytes.getValue(); 256 216 } 257 217 258 #ifdef OSG_1_GET_COMPAT259 inline260 UInt32 &DrawableStatsAttachmentBase::getStoredAttributeBytes(void)261 {262 return this->editStoredAttributeBytes();263 }264 #endif265 266 218 //! Set the value of the DrawableStatsAttachment::_sfStoredAttributeBytes field. 267 219 inline 268 void DrawableStatsAttachmentBase::setStoredAttributeBytes(const UInt32 &value)220 void DrawableStatsAttachmentBase::setStoredAttributeBytes(const UInt32 value) 269 221 { 270 222 editSField(StoredAttributeBytesFieldMask); … … 284 236 //! Get the value of the DrawableStatsAttachment::_sfValid field. 285 237 inline 286 const boolDrawableStatsAttachmentBase::getValid(void) const238 bool DrawableStatsAttachmentBase::getValid(void) const 287 239 { 288 240 return _sfValid.getValue(); 289 241 } 290 242 291 #ifdef OSG_1_GET_COMPAT292 inline293 bool &DrawableStatsAttachmentBase::getValid (void)294 {295 return this->editValid ();296 }297 #endif298 299 243 //! Set the value of the DrawableStatsAttachment::_sfValid field. 300 244 inline 301 void DrawableStatsAttachmentBase::setValid(const bool &value)245 void DrawableStatsAttachmentBase::setValid(const bool value) 302 246 { 303 247 editSField(ValidFieldMask);
