Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

template<class Type, class IntermediateType>
void Impala::NativeTypeRead ( FILE *  fp,
Type *  ptr,
IntermediateType  dummy 
) [inline]

Definition at line 23 of file NativeTypeRead.h.

References EndianSwap().

00024 {
00025     String fs = NativeTypeFormat<Type>(0);
00026     IntermediateType buf;
00027     fscanf(fp, fs.c_str(), &buf);
00028     EndianSwap(&buf);
00029     *ptr = (Type) buf;
00030 }

Here is the call graph for this function:


Generated on Fri Mar 19 10:35:26 2010 for ImpalaSrc by  doxygen 1.5.1