mirror of
https://github.com/yawaflua/tzeva-adom.git
synced 2025-12-11 16:06:25 +02:00
Add support to OREF (-o flag)
This commit is contained in:
24
models/Interfaces/IAlertResponse.cpp
Normal file
24
models/Interfaces/IAlertResponse.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
//
|
||||
// Created by yawaflua on 30/10/2024.
|
||||
//
|
||||
#pragma once
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include "IAlert.cpp"
|
||||
|
||||
namespace tzeva_adom {
|
||||
class IAlertResponse
|
||||
{
|
||||
public:
|
||||
// IAlertResponse() = default;
|
||||
virtual ~IAlertResponse() = default;
|
||||
|
||||
virtual int get_id() = 0;
|
||||
virtual int get_threat() = 0;
|
||||
virtual std::string get_cities() = 0;
|
||||
virtual std::vector<std::string> get_cities_arr() = 0;
|
||||
virtual std::vector<IAlert> get_alerts() = 0;
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user