blob: 291541e8dbe8179d84a4b613cda1d3874d03e162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class transactionInfo{
public:
QString filepath;
qint64 filesize;
Bool finished;
};
QStringList sel;
int totaltransactions currentTransfered;
qint64 totalsize, currentTransferedSize, transferTime, avgTransferRate;
bool paused;
QElapsedTimer timer;
|