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

📄 result.h

📁 有计算机图形学、图像处理、dbms、sniffer、中游俄罗斯外挂、othello、遗传算法、舌苔分析等程序。
💻 H
字号:
// Result.h: interface for the CResult class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_RESULT_H__4D228D64_195F_4118_884F_177548D005FB__INCLUDED_)
#define AFX_RESULT_H__4D228D64_195F_4118_884F_177548D005FB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "DEF.h"
class CResult  
{
public:
	bool success;
	PDB pdbNode;
    //BTNODE *pNode;
	PDB recptr;//如果允许重复键,recptr是数据库指针;
	//允许Dup,recptr是找到的第一条记录在结点的pos
	int pos;
public:
	CResult(bool s,PDB db_addr,PDB r=0,int p=0);
	CResult();
	virtual ~CResult();

};

#endif // !defined(AFX_RESULT_H__4D228D64_195F_4118_884F_177548D005FB__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -