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

template<class StorT, int elemSize, class ArithT>
void Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::WriteTo ( std::ostream &  os  )  [inline]

Definition at line 208 of file Array2dTem.h.

Referenced by Impala::Core::Array::Array2dTem< ElemT, 1, ElemT >::WriteTo().

00209     {
00210         os << Element::TypeString<StorT>(0) << " " << mDataSize << "\n"
00211            << mCW << " " << mCH << " "
00212            << mBW << " " << mBH << "\n";
00213         for(Int64 i=0 ; i<mDataSize ; i++)
00214             os << mData[i] << " ";
00215         os << "\n";
00216     }


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