diff options
Diffstat (limited to 'src/powerlist.h')
-rw-r--r-- | src/powerlist.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/powerlist.h b/src/powerlist.h index 43f51d2..1077d8c 100644 --- a/src/powerlist.h +++ b/src/powerlist.h @@ -30,6 +30,7 @@ #include <vector> #include "sample.h" +#include "random.h" class PowerList { public: @@ -47,6 +48,8 @@ private: float power; }; + Random rand; + std::vector<PowerListItem> samples; float power_max; float power_min; |