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

template<class ArrayT>
void Impala::Core::Array::Pattern::PxArrayPrintElem ( ArrayT *  array,
typename ArrayT::StorType *  ptr 
)

Definition at line 30 of file PxxPrintData.h.

References PX_COUT.

Referenced by PxPrintData().

00031 {
00032     for (int i=0 ; i<array->ElemSize() ; i++) {
00033         if ((i == 0) && (array->ElemSize() > 1))
00034             PX_COUT << "(";
00035         PX_COUT << *ptr++;
00036         if (i+1 < array->ElemSize())
00037             PX_COUT << ",";
00038         if ((i+1 == array->ElemSize()) && (array->ElemSize() > 1))
00039             PX_COUT << ")";
00040     }
00041 }


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