mFrame
載入中...
搜尋中...
無符合項目
Runnable.h
1
7#ifndef MFRAME_A54036B2_950E_4F06_9CD4_6FD23597926A
8#define MFRAME_A54036B2_950E_4F06_9CD4_6FD23597926A
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15
16//----------------------------------------------------------------------------------------
17#include "./../lang/Interface.h"
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace mframe::func {
23 struct Runnable;
24} // namespace mframe::func
25
26/* ***************************************************************************************
27 * Class/struct/Struct
28 */
29struct mframe::func::Runnable : public virtual Interface {
30 /* *************************************************************************************
31 * Method
32 */
33
38 virtual void run(void) abstract;
39};
40
41/* ***************************************************************************************
42 * End of file
43 */
44
45#endif /* MFRAME_A54036B2_950E_4F06_9CD4_6FD23597926A */
Definition BiConsumer.h:22
Definition Runnable.h:29
virtual void run(void) override
執行方法。
Definition Interface.h:134