Add support to OREF (-o flag)

This commit is contained in:
Dima yawaflua Andreev
2024-11-14 20:22:44 +02:00
parent 27632fa5c6
commit 89781660c3
12 changed files with 504 additions and 57 deletions

View File

@@ -0,0 +1,16 @@
//
// Created by yawaflua on 30/10/2024.
//
#pragma once
#include <vector>
#include <string>
namespace tzeva_adom {
class IAlert {
public:
virtual ~IAlert() = default;
virtual std::vector<std::string> get_cities() {};
virtual int get_threat() {};
};
}