LeviLamina
Loading...
Searching...
No Matches
TaskStartInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct TaskStartInfo {
6public:
7 // member variables
8 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 TaskStartInfo& operator=(TaskStartInfo const&);
20 TaskStartInfo(TaskStartInfo const&);
21 TaskStartInfo();
22
23public:
24 // member functions
25 // NOLINTBEGIN
26#ifdef LL_PLAT_C
27 MCNAPI explicit TaskStartInfo(char const* name);
28
29 MCNAPI explicit TaskStartInfo(::std::string_view name);
30#endif
31
32 MCNAPI ::TaskStartInfo& startWithDelay(::std::chrono::nanoseconds delay);
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38#ifdef LL_PLAT_C
39 MCNAPI void* $ctor(char const* name);
40
41 MCNAPI void* $ctor(::std::string_view name);
42#endif
43 // NOLINTEND
44};
MCAPI::TaskStartInfo & startWithDelay(::std::chrono::nanoseconds delay)
Definition Alias.h:14