Пример #1
0
void readEvalObjects( istream & stream ) {
    // gather all objects
    
    string inputLine;
    while (getline(stream, inputLine)) {
        EvalObject *eo = EvalObjectFactory::Create(inputLine);
        if (eo != NULL) {
            norm.addEvalObject( eo );
        }
    }

}