// Employee.h: interface for the CEmployee class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_EMPLOYEE_H__B04FAC04_04B6_11D8_8B8F_00E0189B8E0A__INCLUDED_) #define AFX_EMPLOYEE_H__B04FAC04_04B6_11D8_8B8F_00E0189B8E0A__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class CEmployee { public: CEmployee(); virtual ~CEmployee(); float salary; }; #endif // !defined(AFX_EMPLOYEE_H__B04FAC04_04B6_11D8_8B8F_00E0189B8E0A__INCLUDED_)