I got my program to initially work, but I realized I was supposed to add a destructor to my Employee class. So I went online to watch some tutorials and learn about destructors and realized I need pointers in which I didn't have initially. Here is my program, I can't seem to get my pointers to work now when i'm going back to add them for the destructor to work. Any help or advice would be appreciated.
You don't appear to need a destructor, the default compiler supplied constructor should work just fine since you no longer have any pointers in your class.
But you really should be using constructor initialization lists instead of the assignment in the body of the constructor.
You also seem to be missing several required header file inclusions and using the "using namespace std; " clause in the global scope of a header is a very very bad practice.