mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
14 lines
220 B
C++
14 lines
220 B
C++
#pragma once
|
|
|
|
#include "../Interface/Thread.h"
|
|
#include <string>
|
|
|
|
class IDatabase;
|
|
std::string get_alert_script(IDatabase* db, int script_id);
|
|
|
|
class Alerts : public IThread
|
|
{
|
|
public:
|
|
void operator()();
|
|
};
|