#ifndef INTERFACE_H #define INTERFACE_H class Interface { public: Interface(); virtual ~Interface(); void display(); }; #endif