hi people so basically my code is right to my knowledge but the compiler disagrees i have the right syntax so I don't know what the problem is,heres my code.
people.h
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#define PEOPLE_H
#include "person.h"
class people
{
public:
people();
void print();
protected:
private:
};
#endif // PEOPLE_H