LeviLamina
Loading...
Searching...
No Matches
TimerFacade.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class TimerFacade {
6public:
7 // member variables
8 // NOLINTBEGIN
10 // NOLINTEND
11
12public:
13 // prevent constructor by default
14 TimerFacade& operator=(TimerFacade const&);
15 TimerFacade(TimerFacade const&);
16 TimerFacade();
17
18public:
19 // member functions
20 // NOLINTBEGIN
21#ifdef LL_PLAT_C
22 MCNAPI explicit TimerFacade(double timeDelay);
23#endif
24 // NOLINTEND
25
26public:
27 // constructor thunks
28 // NOLINTBEGIN
29#ifdef LL_PLAT_C
30 MCNAPI void* $ctor(double timeDelay);
31#endif
32 // NOLINTEND
33};
Definition Alias.h:14