LeviLamina
Loading...
Searching...
No Matches
Stopwatch.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class Stopwatch {
6public:
7 // member variables
8 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 Stopwatch& operator=(Stopwatch const&);
19 Stopwatch(Stopwatch const&);
20 Stopwatch();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 // vIndex: 0
26 virtual ~Stopwatch();
27
28 // vIndex: 1
29 virtual double stop();
30
31 // vIndex: 2
32 virtual double stopContinue();
33
34 // vIndex: 3
35 virtual void print(::std::string const& prepend);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCAPI void $dtor();
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47 MCAPI double $stop();
48
49 MCAPI double $stopContinue();
50
51 MCAPI void $print(::std::string const& prepend);
52 // NOLINTEND
53
54public:
55 // vftables
56 // NOLINTBEGIN
57 MCAPI static void** $vftable();
58 // NOLINTEND
59};
Definition Stopwatch.h:5
Definition Alias.h:14