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

std::map<std::string, std::vector<std::string> > Impala::Application::MediaTable::TableDataStore::GetContents (  )  [inline]

Definition at line 97 of file TableDataStore.h.

References mTableDataSources.

Referenced by Impala::Application::MediaTable::ConfigWindowModule::AddSelectorWithTableDataViews().

00098     {
00099         std::map<std::string, std::vector<std::string> > contents;
00100         TableDataSourceMapType::iterator it;
00101         for(it = mTableDataSources.begin(); it != mTableDataSources.end(); it++)
00102         {
00103                         contents[it->first]; // RvB: For what purpose is this?
00104                                                                  //  DO: Probably to make sure the vector exists before
00105                                                                  //              pushing back? Does it still work without?
00106             TableDataViewsMapType& secsec = it->second.second;
00107             TableDataViewsMapType::iterator itv;
00108                 for(itv = secsec.begin(); itv != secsec.end(); itv++)
00109                         contents[it->first].push_back(itv->first);
00110         }
00111         return contents;
00112     }


Generated on Fri Mar 19 10:45:43 2010 for ImpalaSrc by  doxygen 1.5.1