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

int Impala::File::Size (  )  [inline]

Definition at line 118 of file File.h.

References mFp.

00119     {
00120         int pos = ftell(mFp);
00121         fseek(mFp, 0, SEEK_END);
00122         int size = ftell(mFp);
00123         fseek(mFp, 0, pos);
00124         return size;
00125     }


Generated on Thu Jan 13 09:13:57 2011 for ImpalaSrc by  doxygen 1.5.1