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.

14 lines
281 B

#pragma once
#include <iostream>
using namespace std;
#include "worker.h"
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
class Manager : public worker {
public:
Manager(int id, string name, int dId);
// <20><>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ
virtual void showInfo();
// <20><>ȡְ<C8A1><D6B0><EFBFBD><EFBFBD>λ<EFBFBD><CEBB><EFBFBD><EFBFBD>
virtual string getDeptName();
};