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

void Impala::Core::Column::Write ( ColumnTem< Geometry::Rectangle > *  col,
int  nrElem,
String  fileName,
Util::Database *  db,
bool  binary 
) [inline]

Definition at line 155 of file Write.h.

References Impala::Core::Column::ColumnTem< ElemT >::GetData().

00157 {
00158     std::ofstream f(fileName.c_str());
00159     if (!f.is_open())
00160         return;
00161     f << "nr rects : " << nrElem << "\n";
00162     Geometry::Rectangle* data = col->GetData();
00163     for (int i=0 ; i<nrElem ; i++)
00164         f << data[i] << "\n";
00165     f.close();
00166 }

Here is the call graph for this function:


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