This repository has been archived on 2022-11-09. You can view files and clone it, but cannot push or open issues or pull requests.
patterns-old/lesson_2/DisplayElement.hpp

17 lines
215 B
C++
Raw Normal View History

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