D:/gitt/MicrochipFor32/STL_Device/STL_Queue.h 文件参考
D:/gitt/MicrochipFor32/STL_Device/STL_Queue.h
实现了STL库中的Queue
#include "varint.h"#include <stdlib.h>STL_Queue.h 的引用(Include)关系图:
此图展示该文件直接或间接的被哪些文件引用了:
类
class STL_rQueue
一个队列的类
struct _lQueue
链表方式队列的节点
class STL_lQueue
一个队列的类
类型定义
typedef struct _lQueues _lQueues
枚举
enum QUEUES_RES { QUEUES_OK
, QUEUES_EMPTY
, QUEUES_REAL_ERROR
, QUEUES_MALL_ERROR
}
队列的返回值
详细描述
实现了STL库中的Queue
在文件 STL_Queue.h 中定义.
类型定义说明
_lQueues
_lQueuesSTL_Queue.h
STL_Queue.h_lQueues
typedef struct _lQueues _lQueues
在文件 STL_Queue.h 第 92 行定义.
枚举类型说明
QUEUES_RES
QUEUES_RESSTL_Queue.h
STL_Queue.hQUEUES_RES
enum QUEUES_RES
队列的返回值
枚举值
QUEUES_OKSTL_Queue.h
STL_Queue.hQUEUES_OK
QUEUES_OK
成功
QUEUES_EMPTYSTL_Queue.h
STL_Queue.hQUEUES_EMPTY
QUEUES_EMPTY
队列是空的
QUEUES_REAL_ERRORSTL_Queue.h
STL_Queue.hQUEUES_REAL_ERROR
QUEUES_REAL_ERROR
重分配出错realloc
QUEUES_MALL_ERRORSTL_Queue.h
STL_Queue.hQUEUES_MALL_ERROR
QUEUES_MALL_ERROR
重分配出错malloc
在文件 STL_Queue.h 第 45 行定义.