14 lines
221 B
C++
14 lines
221 B
C++
#ifdef _MSC_VER
|
|
// to avoid long name warnings
|
|
#pragma warning(disable:4786)
|
|
#endif
|
|
|
|
#include <ctime>
|
|
#include "eoRNG.h"
|
|
|
|
namespace eo
|
|
{
|
|
/// The Global random number generator.
|
|
eoRng rng( (uint32_t) time(0) );
|
|
}
|
|
|