18afdc4189
<SRS> SRS01 : Authentication </SRS> <Changes> - Fixed polymorphism errors in Employee base class by adding virtual destructor. - Corrected constructor mismatch in GeneralEmployee to properly call Employee constructor with EmployeeType. - Created UserInterface object in main() and invoked run() to start role-based menus. </Changes> <Review> Smitha Mohan </Review>
7 lines
104 B
C++
7 lines
104 B
C++
#include "UserInterface.h"
|
|
int main()
|
|
{
|
|
UserInterface userInterFace;
|
|
userInterFace.run();
|
|
return 0;
|
|
} |