supercell-wx/scwx-qt/source/scwx/qt/manager/alert_manager.hpp
Dan Paulat 6ec594144d Create alert manager to handle audio alert location method
- Will also manage receipt of alerts for playing audio
2023-11-30 22:54:29 -06:00

32 lines
421 B
C++

#pragma once
#include <memory>
#include <QObject>
namespace scwx
{
namespace qt
{
namespace manager
{
class AlertManager : public QObject
{
Q_OBJECT
Q_DISABLE_COPY_MOVE(AlertManager)
public:
explicit AlertManager();
~AlertManager();
static std::shared_ptr<AlertManager> Instance();
private:
class Impl;
std::unique_ptr<Impl> p;
};
} // namespace manager
} // namespace qt
} // namespace scwx