I'm currently in the baby stages of a program, which is supposed to call from separate files and get their information in order to work. I have been getting this error for a little bit now and it's getting very annoying. Anyone know how to fix it?
#include <string>
#include <iostream>
#include "book.h"
using namespace std;
int main ()
{
class BookType b;
b.SetTitle;
b.SetAuthor;
b.SetPublisher;
b.SetISBN;
b.SetPrice;
b.SetCopyNumber;
cout << "This is for testing the BookType class: " << endl;