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