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

template<class Col1T, class Col2T = Column::InvalidColumn, class Col3T = Column::InvalidColumn, class Col4T = Column::InvalidColumn, class Col5T = Column::InvalidColumn, class Col6T = Column::InvalidColumn, class Col7T = Column::InvalidColumn, class Col8T = Column::InvalidColumn, class Col9T = Column::InvalidColumn>
virtual void Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Dump ( int  from = 0,
int  to = -1 
) const [inline, virtual]

Definition at line 503 of file TableTem.h.

Referenced by Impala::Application::Util::DoDumpStills(), Impala::Application::Table::DoDumpTaskTable(), Impala::Core::Table::SimilarityTableSet::Dump(), Impala::Core::Table::QuidTable::DumpGroup(), Impala::Core::VideoSet::Stills::DumpGroups(), Impala::Core::VideoSet::Keyframes::DumpGroups(), and Impala::Application::VidSet::mainVidSet().

00504     {
00505         if (to == -1 || to > Size())
00506             to = Size();
00507         if (to < from)
00508             to = from;
00509         std::cout << "Dumping table from " << from << " to " << to
00510                   << " (table size=" << Size() << ", capacity=" << Capacity()
00511                   << ")" << std::endl;
00512         for (size_t i=0 ; i<mColNames.size() ; i++)
00513             if (mColNames[i] != String(""))
00514                 std::cout << i+1 << "=" << mColNames[i] << ", ";
00515         std::cout << std::endl;
00516         for (int i=from ; i<to ; i++)
00517         {
00518             if (mCol1.Valid())
00519                 std::cout << Get1(i) << ", ";
00520             if (mCol2.Valid())
00521                 std::cout << Get2(i) << ", ";
00522             if (mCol3.Valid())
00523                 std::cout << Get3(i) << ", ";
00524             if (mCol4.Valid())
00525                 std::cout << Get4(i) << ", ";
00526             if (mCol5.Valid())
00527                 std::cout << Get5(i) << ", ";
00528             if (mCol6.Valid())
00529                 std::cout << Get6(i) << ", ";
00530             if (mCol7.Valid())
00531                 std::cout << Get7(i) << ", ";
00532             if (mCol8.Valid())
00533                 std::cout << Get8(i) << ", ";
00534             if (mCol9.Valid())
00535                 std::cout << Get9(i) << ", ";
00536             std::cout << std::endl;
00537         }
00538         std::cout << std::endl;
00539     }


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