threadUse.hpp
Go to the documentation of this file.
1
2#pragma once
3
5
6namespace 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}
Error reporting and collection system.
Definition: errReport.hpp:14
Thread execution context for byeol runtime.
Definition: thread.hpp:19
Thread usage wrapper.
Definition: threadUse.hpp:10