#pragma once #include #include #include namespace scwx { namespace qt { namespace manager { class AlertManager : public QObject { Q_OBJECT Q_DISABLE_COPY_MOVE(AlertManager) public: explicit AlertManager(); ~AlertManager(); void SetRadarSite(const std::shared_ptr& radarSite); static std::shared_ptr Instance(); private: class Impl; std::unique_ptr p; }; } // namespace manager } // namespace qt } // namespace scwx