You.i Engine
YiRandom.h
Go to the documentation of this file.
1 #ifndef _YI_RANDOM_H_
2 #define _YI_RANDOM_H_
3 
4 #include "framework/YiPredef.h"
5 
11 class CYIRandom
12 {
13 public:
25  static uint32_t GenerateRandomNumber();
26 
35  static uint32_t GenerateSecureRandomNumber();
36 
37 private:
38  CYIRandom();
40 };
41 
46 #endif //_YI_RANDOM_H_
#define YI_DISALLOW_COPY_AND_ASSIGN(TypeName)
Delete the copy constructor and assignment operator (and consequently the move constructor as well) ...
Definition: YiPredef.h:114
static uint32_t GenerateSecureRandomNumber()
static uint32_t GenerateRandomNumber()
Definition: YiRandom.h:11