You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
#include <iostream>
|
|
using namespace std;
|
|
#include "worker.h"
|
|
// 老板类
|
|
class Boss : public worker {
|
|
public:
|
|
Boss(int id, string name, int dId);
|
|
// 显示个人信息
|
|
virtual void showInfo();
|
|
// 获取职工岗位名称
|
|
virtual string getDeptName();
|
|
};
|