/* * Copyright (c) 2012-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include namespace Swift { class SWIFTEN_API BoostRandomGenerator : public RandomGenerator { public: BoostRandomGenerator(); int generateRandomInteger(int max) SWIFTEN_OVERRIDE; private: boost::mt19937 generator; }; }