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

📄 cadre.h

📁 高校工资管理系统里面一些东西是通过模版写的因此在其他的类似的系统中也可以直接拿来用
💻 H
字号:
#ifndef CADRE_H
#define CADRE_H
#include<iostream.h>
#include<fstream.h>
#include<string.h>
#include"person.h"
#include"File.h"
class cadre  :virtual public person 
{
public:
	cadre (char *n=" ",char *id="00");
    void Pay();
	~cadre();
    friend class File;
    friend ostream& operator<<(ostream &sout,cadre &s);
    friend ofstream& operator<<(ofstream &fsout,cadre&s);
	friend istream& operator>>(istream &sin,cadre&s);
    friend ifstream& operator>>(ifstream &fsin,cadre&s);
protected:
	static int BasePayment;
    static int addtion;
};
#endif

⌨️ 快捷键说明

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