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 low, int high);
24
25 MCNAPI uint Rand(uint t);
26
27 MCNAPI uint Rand(uint low, uint high);
28
29 MCNAPI explicit Random(uint64 seed);
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCNAPI void* $ctor(uint64 seed);
36 // NOLINTEND
37};
38
39} // namespace webrtc
Definition Random.h:7
MCAPI Random(uint64 seed)
MCAPI uint Rand(uint low, uint high)
MCAPI int Rand(int low, int high)
MCAPI uint Rand(uint t)
MCAPI void * $ctor(uint64 seed)
Definition Alias.h:14