I am attempting to create a simple class header file. I have done the following so far:
#ifndef RECORD_H
#define RECORD_H
class Records{
int idNumber;
int serialNumber;
public:
Records();
};
#endif
However, I am getting the following error:
[Error] unknown type name 'class'
What am I doing wrong?