https://github.com/eloyekunle/employee_db
A c++ application to manage employees.
https://github.com/eloyekunle/employee_db
employee-db employees sample-app
Last synced: 7 months ago
JSON representation
A c++ application to manage employees.
- Host: GitHub
- URL: https://github.com/eloyekunle/employee_db
- Owner: eloyekunle
- License: mit
- Created: 2016-12-30T21:21:44.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-30T21:32:03.000Z (almost 9 years ago)
- Last Synced: 2025-02-09T05:17:45.251Z (8 months ago)
- Topics: employee-db, employees, sample-app
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Employee DB
====================
C++ Employee Management Application#### Problem Statement
A program to manage a company’s employee records needs to be flexible and have useful features.
The feature set for this program includes the following:
* The ability to add an employee
* The ability to fire an employee
* The ability to promote an employee
* The ability to view all employees, past and present
* The ability to view all current employees
* The ability to view all former employeesThe design for this program divides the code into three parts. The Employee class encapsulates the
information describing a single employee. The Database class manages all the employees of the
company. A separate UserInterface file provides the interactivity of the program.Copyright © 2014 John Wiley & Sons, Inc.
####Execution
Follow appropriate compilation instructions for your compiler.#####Example: Ubuntu 16.04 with cmake
>> cmake .
>> make
>> ./Employee####Copyright
© 2016 [Oyekunle Elijah PlayMice](http://www.playmiceweb.com/)