LINUX.ORG.RU

История изменений

Исправление cvs-255, (текущая версия) :


list<spec> molSpec;

list<spec>::iterator it;

for (it = Db.Personell.begin(); it != Db.Personell.end(); ++it)
{
    spec x = *it;
    if (x.Age < 30 && x.Education = Hight && x.Level < Manager)
       molSpec.push_back(x);
}

про вторую таблицу я не уловил, но не думаю, что она сильно повлияет

Исправление cvs-255, :


list<spec> molSpec;

list<spec>::iterator it;

for (it = Db.Personell.begin(); it != Db.Personell.end(); ++it)
{
    spec x = *it;
    if (x.Age < 30 && x.Education = Hight && x.Level < Manager)
       molSpec.push_back(x);
}

Исходная версия cvs-255, :


list<spec> molSpec;

list<spec>::iterator it;

for (it = DbPersonell.begin(); it != DbPersonell.end(); ++it)
{
    spec x = *it;
    if (x.Age < 30 && x.Education = Hight && x.Level < Manager)
       molSpec.push_back(x);
}