#pragma once template class ISubscriber { public: virtual void update(const Context &context) noexcept = 0; };