21#ifndef RANDOMGENERATOR_H
22#define RANDOMGENERATOR_H
24#include "Utils/Pimpl.h"
41 int getNumber(
int min,
int max);
43 static int getRandomNumber(
int min,
int max);
44 static std::mt19937 getGenerator();
51 template<
class Container>
52 void shuffle(Container& container)
54 std::shuffle(container.begin(), container.end(), RandomGenerator::getGenerator());
Definition RandomGenerator.h:29
Helper functions.
Definition MetaTypeRegistry.h:25