supercell-wx/scwx-qt/source/scwx/qt/manager/text_event_manager.hpp

43 lines
719 B
C++

#pragma once
#include <scwx/awips/text_product_message.hpp>
#include <scwx/qt/types/text_event_key.hpp>
#include <memory>
#include <string>
#include <QObject>
namespace scwx
{
namespace qt
{
namespace manager
{
class TextEventManager : public QObject
{
Q_OBJECT
public:
explicit TextEventManager();
~TextEventManager();
std::list<std::shared_ptr<awips::TextProductMessage>>
message_list(const types::TextEventKey& key) const;
void LoadFile(const std::string& filename);
static TextEventManager& Instance();
signals:
void AlertUpdated(const types::TextEventKey& key);
private:
class Impl;
std::unique_ptr<Impl> p;
};
} // namespace manager
} // namespace qt
} // namespace scwx