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

void Impala::Core::Feature::LabelSet::Read ( Util::IOBuffer buf  )  [inline]

Definition at line 98 of file LabelSet.h.

References Impala::Util::IOBuffer::Available(), mId, mMap, Impala::Util::IOBuffer::NativeTypeRead(), and Impala::Util::IOBuffer::ReadLine().

Referenced by Impala::Persistency::LabelSetRepositoryInFile::Get().

00099     {
00100         if (buf)
00101         {
00102             int nr = 0;
00103             while (buf->Available())
00104             {
00105                 Quid q;
00106                 buf->NativeTypeRead(&q);
00107                 String label = buf->ReadLine();
00108                 mMap.Add(q, label);
00109                 nr++;
00110             }
00111             mId += nr;
00112         }
00113     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:10:18 2010 for ImpalaSrc by  doxygen 1.5.1