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/Observer.hpp

17 lines
232 B
C++
Raw Normal View History

2021-11-01 08:54:58 +00:00
/*
* Observer.hpp
*
* Created on: 31 окт. 2021 г.
* Author: alexander
*/
#pragma once
class Observer
{
public:
virtual void update(float temp, float humidity, float pressure) = 0;
virtual ~Observer() {}
};