LeviLamina
Loading...
Searching...
No Matches
Random.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7class Random {
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 Random& operator=(Random const&);
17 Random(Random const&);
18 Random();
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCNAPI int Rand(int, int);
24
25 MCNAPI uint Rand(uint low, uint high);
26
27 MCNAPI explicit Random(uint64 seed);
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCNAPI void* $ctor(uint64 seed);
34 // NOLINTEND
35};
36
37} // namespace webrtc
MCAPI Random(uint64 seed)
MCAPI uint Rand(uint low, uint high)
MCAPI int Rand(int, int)
MCAPI void * $ctor(uint64 seed)
Definition Alias.h:14