| 801 | } |
| 802 | |
| 803 | XdmfInt32 XdmfArray::GetValueAsInt32( XdmfInt64 Index ) { |
| 804 | |
| 805 | XdmfPointer ArrayPointer; |
| 806 | XdmfInt32 Value, *vp = &Value; |
| 807 | |
| 808 | ArrayPointer = this->GetDataPointer(Index); |
| 809 | XDMF_ARRAY_COPY( ArrayPointer, this->GetNumberType(), 1, |
| 810 | vp, XDMF_INT32_TYPE, 1, |
| 811 | XDMF_ARRAY_OUT, 1); |
| 812 | return( Value ); |
| 813 | } |
| 814 | |
| 815 | XdmfInt16 XdmfArray::GetValueAsInt16( XdmfInt64 Index ) { |
| 816 |
nothing calls this directly
no test coverage detected