Hi, I have a pretty simple class called simulator in simulator.h
#include <iostream.h>
#include <stdlib.h>
Class Simulator {
private:
short int startFloor;
short int destFloor;
public:
void setFloors();
void getFloors(short int &, short int &);
};
Now when I compile it, I get this error:
simulator.h:4: error: `Class' does not name a type
What have I got wrong here?