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

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

Definition at line 116 of file LabelSet.h.

References mMap, Impala::Util::IOBuffer::NativeTypeWrite(), and Impala::Util::IOBuffer::Puts().

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

00117     {
00118         if (buf)
00119         {
00120             std::vector<Quid> quids = mMap.GetAllIdx();
00121             std::vector<String> labels = mMap.GetAll();
00122             for (int i=0 ; i<quids.size() ; i++)
00123             {
00124                 buf->NativeTypeWrite(quids[i]);
00125                 buf->Puts(labels[i]);
00126             }
00127         }
00128     }

Here is the call graph for this function:


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