// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved. // For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md #pragma once #include #include #include namespace gui { class TechnicalInformationWindow : public AppWindow, public TechnicalWindowContract::View { public: TechnicalInformationWindow(app::Application *app, std::shared_ptr presenter); private: void buildInterface() override; std::shared_ptr presenter; }; } // namespace gui