mFrame
載入中...
搜尋中...
無符合項目
Supplier.h
1
7#ifndef MFRAME_A59752C6_6883_4BC0_86C8_5C004260E415
8#define MFRAME_A59752C6_6883_4BC0_86C8_5C004260E415
9
10/* ***************************************************************************************
11 * Include
12 */
13
14//----------------------------------------------------------------------------------------
15
16//----------------------------------------------------------------------------------------
17#include "./../lang/Interface.h"
18
19/* ***************************************************************************************
20 * Namespace
21 */
22namespace mframe::func {
23 template <typename R>
24 struct Supplier;
25} // namespace mframe::func
26
27/* ***************************************************************************************
28 * Class/struct/Struct
29 */
30template <typename R = Interface>
31struct mframe::func::Supplier : public virtual Interface {
32 /* *************************************************************************************
33 * Method
34 */
35
41 virtual R& get(void) abstract;
42
43 /* *************************************************************************************
44 * Static Method
45 */
46};
47
48/* ***************************************************************************************
49 * End of file
50 */
51
52#endif /* MFRAME_A59752C6_6883_4BC0_86C8_5C004260E415 */
Definition BiConsumer.h:22
Definition Supplier.h:31
virtual R & get(void) override
Definition Interface.h:134