Home || Visual Search || Applications || Architecture || 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 Thu Jan 13 09:13:54 2011 for ImpalaSrc by  doxygen 1.5.1