cfuncinfoarr.h
来自「日本的开源编辑器源码」· C头文件 代码 · 共 51 行
H
51 行
// $Id: CFuncInfoArr.h,v 1.6 2002/10/29 17:47:00 Administrator Exp $
/*! @file
@brief アウトライン解析 データ配列
@author Norio Nakatani
@date 1998/06/23 作成
$Revision: 1.6 $
*/
/*
Copyright (C) 1998-2001, Norio Nakatani
This source code is designed for sakura editor.
Please contact the copyright holder to use this code for other purpose.
*/
class CFuncInfoArr;
#ifndef _CFUNCINFOARR_H_
#define _CFUNCINFOARR_H_
#include "CFuncInfo.h"
//! アウトライン解析 データ配列
class CFuncInfoArr {
public:
CFuncInfoArr(); /* CFuncInfoArrクラス構築 */
~CFuncInfoArr(); /* CFuncInfoArrクラス消滅 */
CFuncInfo* GetAt( int ); /* 0<=の指定番号のデータを返す */
void AppendData( CFuncInfo* ); /* 配列の最後にデータを追加する */
void AppendData( int, int, const char*, int, int nDepth = 0 ); /* 配列の最後にデータを追加する 2002.04.01 YAZAKI 深さ導入*/
int GetNum( void ){ return m_nFuncInfoArrNum; } /* 配列要素数を返す */
void Empty( void );
void DUMP( void );
char m_szFilePath[_MAX_PATH + 1]; /*!< 解析対象ファイル名 */
private:
int m_nFuncInfoArrNum; /*!< 配列要素数 */
CFuncInfo** m_ppcFuncInfoArr; /*!< 配列 */
};
///////////////////////////////////////////////////////////////////////
#endif /* _CFUNCINFOARR_H_ */
/*[EOF]*/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?