mirror of
https://github.com/yawaflua/tzeva-adom.git
synced 2025-12-08 19:39:30 +02:00
16 lines
289 B
C++
16 lines
289 B
C++
//
|
|
// 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() {};
|
|
};
|
|
} |