/* * DisplayElement.hpp * * Created on: 31 окт. 2021 г. * Author: alexander */ #pragma once class DisplayElement { public: virtual void display() const = 0; virtual ~DisplayElement() {} };