- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
if(file.open(QIODevice::ReadOnly))
{
QTextStream in(&file);
while(!in.atEnd())
{
textString = in.readLine();
linesText += textString;
linesText += "\n";
}
linesText.chop(1);
}
else
try
{
throw 20;
}
catch (int e)
{
cout « "Файл записей не был открыт!" « e « endl;
}
Комментарии (0) RSS
Добавить комментарий