Files
tzeva-adom/models/Interfaces/IAlert.cpp
2024-11-14 20:22:44 +02:00

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() {};
};
}