?? cadre.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 + -