script.h

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

H
40
字号
#ifndef __SCRIPT_H#define __SCRIPT_H#include "atom.h"#include "line.h"class script : public atom{  public:   line* top;   line* bot;   script* last;   script* next;   ~script();   script( atom* a );   script( atom* a, line* content );   void del( line* );   line* ins( line* );   void close( line* );   int load( char* );   void save( char* );};class line_s : public line{  public:   script* scr;//   int fgcolor, bgcolor; // changed with key combo, auto mode   virtual ~line_s();   line_s();   line_s( line* here );};#endif // __SCRIPT_H

⌨️ 快捷键说明

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