📄 lab.h
字号:
#ifndef LAB_H
#define LAB_H
#include<iostream.h>
#include<fstream.h>
#include<stdlib.h>
#include<string.h>
#include"person.h"
#include"File.h"
class lab: virtual public person
{
public:
lab(char *na=" ",char* id="00",int wtime=70);
void Pay();
~lab();
bool operator==(lab &s);
friend class File;
friend ostream& operator<<(ostream &sout,lab &s);
friend ofstream& operator<<(ofstream &fsout,lab&s);
friend istream& operator>>(istream &sin,lab&s);
friend ifstream& operator>>(ifstream &fsin,lab&s);
protected:
static int BaseWorkTime;
static int BasePayment;
static int addtion;
int Lworktime;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -