I'm having a problem in one of my programs that I'm writing. I have declared in the .h file a class called Employee.
class TEmployee
{
int data;
int data;
etc
int GetDayOff();
int GetVacation();
etc
}
Later on in the .Cpp file where I try to implement the class, I get the error Improper Use Employee::GetDayOff()
class TEmployee
{
int data;
int data;
etc
int GetDayOff();
int GetVacation();
etc
}
Later on in the .Cpp file where I try to implement the class, I get the error Improper Use Employee::GetDayOff()