3 errors on client code
undefined reference to GradeBook::GradeBook( std::string name )
can you please tell me where is the problem?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// GradeBook.h class definition
#include <string>
class GradeBook
{
public:
GradeBook( std::string ); // course name constructor
void setCourseName ( std::string ); // function that sets the course name
std::string getCourseName(); // string that gets the course name
void displayMessage();
private:
std::string courseName;
};