template<class Type, class IntermediateType>
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:
|