// Worker.h: interface for the CWorker class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_WORKER_H__B04FAC05_04B6_11D8_8B8F_00E0189B8E0A__INCLUDED_) #define AFX_WORKER_H__B04FAC05_04B6_11D8_8B8F_00E0189B8E0A__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "Employee.h" class CWorker : public CEmployee { public: CWorker(); virtual ~CWorker(); float CWorker::money(); CWorker::CWorker(float bonus1); CWorker::CWorker(float salary1, float bonus1); float bonus; }; #endif // !defined(AFX_WORKER_H__B04FAC05_04B6_11D8_8B8F_00E0189B8E0A__INCLUDED_)