| | 186 | /*---------------------------------------------------------------------*/ |
|---|
| | 187 | /*! \name Ptr MField Set */ |
|---|
| | 188 | /*! \{ */ |
|---|
| | 189 | |
|---|
| | 190 | |
|---|
| | 191 | void pushToRange (const Real32 &value ); |
|---|
| | 192 | void insertIntoRange ( UInt32 uiIndex, |
|---|
| | 193 | const Real32 &value ); |
|---|
| | 194 | void replaceInRange ( UInt32 uiIndex, |
|---|
| | 195 | const Real32 &value ); |
|---|
| | 196 | void replaceInRange (const Real32 &pOldElem, |
|---|
| | 197 | const Real32 &pNewElem); |
|---|
| | 198 | void removeFromRange ( UInt32 uiIndex ); |
|---|
| | 199 | void removeFromRange (const Real32 &value ); |
|---|
| | 200 | void clearRange ( void ); |
|---|
| | 201 | |
|---|
| | 202 | |
|---|