| 825 | } |
| 826 | |
| 827 | XdmfInt8 XdmfArray::GetValueAsInt8( XdmfInt64 Index ) { |
| 828 | |
| 829 | XdmfPointer ArrayPointer; |
| 830 | XdmfInt8 Value, *vp = &Value; |
| 831 | |
| 832 | ArrayPointer = this->GetDataPointer(Index); |
| 833 | XDMF_ARRAY_COPY( ArrayPointer, this->GetNumberType(), 1, |
| 834 | vp, XDMF_INT8_TYPE, 1, |
| 835 | XDMF_ARRAY_OUT, 1); |
| 836 | return( Value ); |
| 837 | } |
| 838 | |
| 839 | |
| 840 | XdmfInt32 XdmfArray::GetValues( XdmfInt64 Index, XdmfUInt8 *Values, |
nothing calls this directly
no test coverage detected