로딩중...
검색중...
일치하는것 없음
threadUse.hpp
이 파일의 문서화 페이지로 가기
1
2
#pragma once
3
4
#include "
core/frame/thread.hpp
"
5
6
namespace
by {
11
class
_nout
threadUse
{
12
BY(ME(
threadUse
))
13
14
public
:
15
threadUse
();
16
threadUse
(
const
errReport
& new1);
17
~threadUse
();
18
19
public
:
20
thread
& get();
21
const
thread
& get()
const
BY_CONST_FUNC
(get())
22
23
void
use
();
24
void
rel();
25
26
private
:
27
tstr<thread>
_thr;
28
tstr<thread>
_prev;
29
};
30
}
by::errReport
Error report collector
Definition
errReport.hpp:24
by::thread
Thread execution context for byeol runtime
Definition
thread.hpp:46
by::threadUse
Thread usage wrapper
Definition
threadUse.hpp:11
by::tnarr
Definition
tnarr.hpp:9
thread.hpp
to Top