01: /****************************************************************************
02: ** COPYRIGHT (C):    1998 Cay S. Horstmann. All Rights Reserved.
03: ** PROJECT:          Computing Concepts with C++ 2E
04: ** FILE:             employee.cpp
05: ** NOTE TO STUDENTS: This file has been edited to be compatible with older
06: ** compilers. If your compiler fully supports the ANSI/ISO C++
07: ** standard, remove the line #include "ccc_ansi.cpp". You can also remove
08: ** the lines #ifndef CCC_ANSI_H and #endif
09: ****************************************************************************/
10: 
11:
12:
13: 
14: #include <iostream>
15: 
16: using namespace std;
17: 
18:
19: 
20: #include "ccc_empl.cpp"
21: 
22: int main()
23: {  
24:    Employee harry("Hacker, Harry", 45000.00);
25: 
26:    double new_salary = harry.get_salary() + 3000;
27:    harry.set_salary(new_salary);
28: 
29:    cout << "Name: " << harry.get_name() << "\n";
30:    cout << "Salary: " << harry.get_salary() << "\n";
31: 
32:    return 0;
33: }