Ok, im having trouble creating a simple class called "Wage" that will determine the pay for each of several employees. The company pays time x1 for the first 40 hours worked by each employee and pays time x1.5 the rest of hours over 40.
Your first issue that I can point out is you are using int vs double. Also I noticed you have a lot of code, but none of it is really being used so far.
I'd personally recommend combining everything into your main CPP file and making it work and then once you get it working, slowly start splitting it into separate files. But that's just the way I've always done things.