LeviLamina
Loading...
Searching...
No Matches
StopwatchNLast.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/timing/Stopwatch.h"
7
8class StopwatchNLast : public ::Stopwatch {
9public:
10 // member variables
11 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 StopwatchNLast& operator=(StopwatchNLast const&);
22 StopwatchNLast(StopwatchNLast const&);
23 StopwatchNLast();
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 virtual ~StopwatchNLast() /*override*/ = default;
29
30 virtual double stop() /*override*/;
31
32 virtual void print(::std::string const& prepend) /*override*/;
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
Definition Alias.h:14