mFrame
載入中...
搜尋中...
無符合項目
BiConsumer.h
1
7#ifndef MFRAME_CE48C601_AB18_4B36_8C89_8ACA733118B1
8#define MFRAME_CE48C601_AB18_4B36_8C89_8ACA733118B1
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 T, typename U>
24 struct BiConsumer;
25} // namespace mframe::func
26
27/* ***************************************************************************************
28 * Class/struct/Struct
29 */
30template <typename T = Interface, typename U = Interface>
31struct mframe::func::BiConsumer : public virtual Interface {
32 /* *************************************************************************************
33 * Method
34 */
35
42 virtual void accept(T& t, U& u) abstract;
43
44 /* *************************************************************************************
45 * Static Method
46 */
47};
48
49/* ***************************************************************************************
50 * End of file
51 */
52
53#endif /* MFRAME_CE48C601_AB18_4B36_8C89_8ACA733118B1 */
Definition BiConsumer.h:22
Definition BiConsumer.h:31
virtual void accept(T &t, U &u) override
Definition Interface.h:134