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

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

Definition at line 115 of file File.h.

References mFp.

00116     {
00117         int pos = ftell(mFp);
00118         fseek(mFp, 0, SEEK_END);
00119         int size = ftell(mFp);
00120         fseek(mFp, 0, pos);
00121         return size;
00122     }


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