📄 frame.h
字号:
// $Header: /cvsroot/sourcenav/src/snavigator/demo/c++_demo/glish/Frame.h,v 1.1.1.1 2002/04/18 23:35:24 mdejong Exp $#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -