atom.h

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

H
35
字号
#ifndef __ATOM_H#define __ATOM_H//#include "context.h"class context;#include "type.h" // dword#define ID_MAIN		0x0000#define ID_LINE		0x0001#define ID_LINE_S	0x0002#define ID_SCRIPT	0x0100#define ID_SCRIPT_DIR	0x0101class atom{  public:   atom* parent;   context* cx;   dword id_mask;//   bool visible;   ~atom();   atom( atom& );   atom( atom* );   atom* cxtoptr( char* );   char* ptrtocx( atom* );//   virtual atom* cxtoptr( char* ) = 0;//   virtual char* ptrtocx( atom* ) = 0;   char* namecx(); // absolute?};#endif // __ATOM_H

⌨️ 快捷键说明

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