This is an abstract class that defines an interface for any kind of display. It only defines the one method:
void display(uint8_t c);
This means that any kind of 'Display' must be able to display a character.