------------------------------------------------------------------------------ Description: Number of attributes.
| 88 | // Description: |
| 89 | // Number of attributes. |
| 90 | int vtkGenericAttributeCollection::GetNumberOfAttributes() |
| 91 | { |
| 92 | int result = static_cast<int>(this->AttributeInternalVector->Vector.size()); |
| 93 | // assert("post: positive_result" && result>=0); size() is an unsigned type according to STL |
| 94 | // vector definition |
| 95 | return result; |
| 96 | } |
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 | int vtkGenericAttributeCollection::GetNumberOfComponents() |
no test coverage detected