1 Star 0 Fork 68

qwhh514 / cocosocket

forked from beykery / cocosocket 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Queue.h 363 Bytes
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2014-01-26 17:47 . bug
/*
* File: Queue.h
* Author: beykery
*
* Created on 2014年1月22日, 上午11:22
*/
#ifndef QUEUE_H
#define QUEUE_H
template <class T>
class Queue {
public:
Queue() {
};
virtual ~Queue() {
};
virtual bool Offer(T* e) = 0;
virtual T* Poll() = 0;
virtual T* Peek() = 0;
virtual int Size() = 0;
};
#endif /* QUEUE_H */
1
https://gitee.com/unreal/cocosocket.git
git@gitee.com:unreal/cocosocket.git
unreal
cocosocket
cocosocket
master

搜索帮助