frame.h
来自「linux 下的源代码分析阅读器 red hat公司新版」· C头文件 代码 · 共 31 行
H
31 行
// $Header$#ifndef frame_h#define frame_h#include "Glish/Object.h"class Value;class Frame : public GlishObject { public: Frame( int frame_size, Value* param_info ); ~Frame(); Value*& FrameElement( int offset ); // Functionality necessary to implement the "missing()" // function; in the future this may need to be extended // with a "ParameterInfo" object. const Value *Missing() const { return missing; } int Size() const { return size; } protected: int size; Value** values; Value* missing; };#endif /* frame_h */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?