context.h

来自「initial working phase of the design of s」· C头文件 代码 · 共 23 行

H
23
字号
#ifndef __CONTEXT_H#define __CONTEXT_H#include "atom.h"//class atom;class context{  public:   atom* a;   char* name;   context* up,* first,* last,* prev,* next;   ~context();   context( context*, atom*, char* );//   atom* findcx( char* );//   int possess( int );//   int colorize( int );};#endif // __CONTEXT_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?