threadUse.hpp
Go to the documentation of this file.
1
2
#pragma once
3
4
#include "
core/frame/thread.hpp
"
5
6
namespace
by {
10
class
_nout
threadUse
{
11
BY(ME(
threadUse
))
12
13
public
:
14
threadUse
();
15
threadUse
(
const
errReport
& new1);
16
~threadUse
();
17
18
public
:
19
thread
& get();
20
const
thread
& get()
const
BY_CONST_FUNC(get())
21
22
void
use();
23
void
rel();
24
25
private
:
26
thread
_thr;
27
};
28
}
by::errReport
Error reporting and collection system.
Definition:
errReport.hpp:14
by::thread
Thread execution context for byeol runtime.
Definition:
thread.hpp:19
by::threadUse
Thread usage wrapper.
Definition:
threadUse.hpp:10
thread.hpp