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

template<class Iterator>
void Impala::Persistency::File::WriteNative ( Iterator  begin,
Iterator  end 
) [inline]

Definition at line 178 of file File.h.

References Impala::EndianSwap(), GetWriteBuffer(), and Impala::Util::IOBuffer::Write().

00179     {
00180         typedef typename Iterator::value_type elem_type;
00181 
00182         IOBuffer* buf = GetWriteBuffer();
00183         for (Iterator it=begin ; it!=end ; it++)
00184         {
00185             elem_type d = *it;
00186             EndianSwap(&d);
00187             buf->Write(&d, sizeof(d));
00188         }
00189         delete buf;
00190     }

Here is the call graph for this function:


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