// Employee.cpp: implementation of the CEmployee class. // ////////////////////////////////////////////////////////////////////// #include "Employee.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CEmployee::CEmployee() { salary=1000; } CEmployee::~CEmployee() { }