помогите разобраться, почему считывается только 1 строка!КодC++ (Qt)QHash hash;QFile *file_com=new QFile("com.txt");file_com->open(QIODevice::ReadOnly);QTextStream *com=new QTextStream(file_com);QStringList lt;QString s;QString st;while(!file_com->atEnd()){ st=com->readLine(); lt=st.split('_'); s=lt.takeFirst();QHostAddress ad(lt.takeFirst()); hash.insert(s, ad); out
|