ProgressArray.h 228 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
#ifndef PROGRESSARRAY_H
#define PROGRESSARRAY_H

#include <QVector>
#include <tuple>

typedef std::pair<long /*id*/, double /*progress*/> TaggedProgress;
typedef QVector<TaggedProgress> ProgressArray;

#endif // PROGRESSARRAY_H