ESGRAF48/source/ResultWidget/PRMap.h

15 lines
235 B
C
Raw Normal View History

2018-06-14 17:19:53 +00:00
#pragma once
#include "Age.h"
2018-06-14 17:19:53 +00:00
#include <vector>
class PRMap
{
protected:
2019-10-05 14:14:45 +00:00
std::vector<Age> m_ages;
std::vector<std::vector<unsigned int>> m_PRs;
2018-06-14 17:19:53 +00:00
public:
2019-10-05 14:14:45 +00:00
unsigned int lookup(const Age& age, const unsigned int& points);
2018-06-14 17:19:53 +00:00
};