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

📄 bdatabase.h

📁 一个用VC编写的Dos界面的图书管理系统
💻 H
字号:
// bdatabase.h: interface for the bdatabase class.

#include"stdafx.h"
#include"fstream.h"
#include "book.h"	// Added by ClassView
class bdatabase  
{
public:
	int bookid;
	void clear();
	int addbook(int n,char  *na);
	Book *query(int bookid);
	void list();
	void bookdata();
	bdatabase();
	~bdatabase();
    void writeB();
private:
	Book book[100];
	int top;
};

⌨️ 快捷键说明

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