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