Changed qualityVector from map to vector of pairs

This change is better for the dispatcher, as he can sort the qualityvector now easily by the quality of each part
This commit is contained in:
TabDragon
2018-01-02 13:59:16 +01:00
parent ce6fc0db72
commit 4f9f43991c
4 changed files with 32 additions and 16 deletions

View File

@ -10,13 +10,12 @@
#include "../functions/AbstractionLayers/Layer1/AbstractionLayer_1.h"
#include "../functions/AbstractionLayers/DestructionPower/DestructionPower.h"
using namespace std;
class LogEntry
{
public:
map<Part*, float> PieceCollector;
qualityVector PieceCollector;
int abstractionLevel;
coor myCoor;