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 virtual ~Stopwatch();
26
27 virtual double stop();
28
29 virtual double stopContinue();
30
31 virtual void print(::std::string const& prepend);
32 // NOLINTEND
33
34public:
35 // member functions
36 // NOLINTBEGIN
37 MCNAPI_C void start();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCNAPI_C void* $ctor();
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCNAPI void $dtor();
50 // NOLINTEND
51
52public:
53 // virtual function thunks
54 // NOLINTBEGIN
55 MCNAPI double $stop();
56
57 MCNAPI double $stopContinue();
58
59 MCNAPI void $print(::std::string const& prepend);
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
static MCAPI void ** $vftable()
MCAPI void $dtor()
MCAPI void $print(::std::string const &prepend)
MCAPI double $stop()
MCAPI double $stopContinue()
Definition Alias.h:14