Scheduler
countingWheel.h
Go to the documentation of this file.
1 
10 #ifndef COUNTING_WHEEL_H
11 #define COUNTING_WHEEL_H
12 
13 namespace Utils
14 {
15 
17 {
18 public:
19  CountingWheel(unsigned int base);
20  void initialize();
21  bool increment();
22  unsigned int getValue();
23  unsigned int getBase();
24 private:
25  unsigned int base;
26  unsigned int value{0};
27 };
28 
29 }
30 
31 #endif
CountingWheel(unsigned int base)
unsigned int getBase()
Definition: context.h:16
unsigned int getValue()