| 813 | } |
| 814 | |
| 815 | XdmfInt16 XdmfArray::GetValueAsInt16( XdmfInt64 Index ) { |
| 816 | |
| 817 | XdmfPointer ArrayPointer; |
| 818 | XdmfInt16 Value, *vp = &Value; |
| 819 | |
| 820 | ArrayPointer = this->GetDataPointer(Index); |
| 821 | XDMF_ARRAY_COPY( ArrayPointer, this->GetNumberType(), 1, |
| 822 | vp, XDMF_INT16_TYPE, 1, |
| 823 | XDMF_ARRAY_OUT, 1); |
| 824 | return( Value ); |
| 825 | } |
| 826 | |
| 827 | XdmfInt8 XdmfArray::GetValueAsInt8( XdmfInt64 Index ) { |
| 828 |
nothing calls this directly
no test coverage detected