hourly.h

来自「1、 模拟一间公司(有普通工人、经理、销售员、计时工人和计件工人)的雇员月工资单」· C头文件 代码 · 共 33 行

H
33
字号
#ifndef hourly_h
#define hourly_h
#include "employee.h"

class HourlyWorker:public Employee
{
public:
  HourlyWorker(const char *,const char *,float);
  ~HourlyWorker();
  void earnings();
  void setHours(int);
  static HourlyWorker *getFirst() const;
  virtual Employee *getNext() const;
  static int getAmount() const;
  static long int getTotalM() const;
  virtual int getSalary() const;
  static void delAll();
  static void printList(int,int,int);
  static void saveList(ofstream &);
  virtual void display(ostream &) const;
private:
  int perHour;
  int hours;
  int salary;
  static int amount;
  static long int totalM;
  static HourlyWorker *first;
  static HourlyWorker *end;
  HourlyWorker *next;
};

#endif

⌨️ 快捷键说明

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