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

template<class C1, class C2>
std::vector<FeatureTable*> Impala::Core::Feature::FeatureTableSet::GetTables ( String  name1,
C1  val1,
String  name2,
C2  val2 
) [inline]

Definition at line 324 of file FeatureTableSet.h.

References GetFeatureDefinition(), Impala::MakeString(), and mTables.

00325     {
00326         std::vector<FeatureTable*> res;
00327         String str1 = MakeString(val1);
00328         String str2 = MakeString(val2);
00329         for (int i=0 ; i<mTables.size() ; i++)
00330         {
00331             FeatureDefinition def = GetFeatureDefinition(i);
00332             if (def.GetParameterValue(name1) == str1 &&
00333                 def.GetParameterValue(name2) == str2)
00334             {
00335                 res.push_back(mTables[i]);
00336             }
00337         }
00338         return res;
00339     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:09:36 2010 for ImpalaSrc by  doxygen 1.5.1