⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frame.h

📁 This Source-Navigator, an IDE for C/C++/Fortran/Java/Tcl/PHP/Python and a host of other languages.
💻 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 + -