scriptqueue.h
来自「编译工具」· C头文件 代码 · 共 34 行
H
34 行
//// Simple FIFO queue for Tcl/Tk scripts awaiting evaluation.//// $Id: scriptQueue.h,v 1.1 1995/08/21 13:22:51 krw Exp $ $Author: krw $//#ifndef _scriptQueue_h#define _scriptQueue_hstruct scriptcondpair { char *script; omni_condition *cond;};class scriptQueue { private: struct sqe { scriptcondpair scp; sqe *next; }; sqe *head; sqe *tail; public: scriptQueue() {head = tail = 0;} void enq(char *script, omni_condition *cond); scriptcondpair deq();};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?