frame.h

来自「This Source-Navigator, an IDE for C/C++/」· C头文件 代码 · 共 31 行

H
31
字号
// $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 + =
减小字号Ctrl + -
显示快捷键?