Add torrent_resumed torrent alert.
This commit is contained in:
@@ -28,6 +28,7 @@ extern char const* block_finished_alert_doc;
|
||||
extern char const* block_downloading_alert_doc;
|
||||
extern char const* storage_moved_alert_doc;
|
||||
extern char const* torrent_paused_alert_doc;
|
||||
extern char const* torrent_resumed_alert_doc;
|
||||
extern char const* torrent_checked_alert_doc;
|
||||
extern char const* url_seed_alert_doc;
|
||||
extern char const* file_error_alert_doc;
|
||||
@@ -163,6 +164,10 @@ void bind_alert()
|
||||
"torrent_paused_alert", torrent_paused_alert_doc, no_init
|
||||
);
|
||||
|
||||
class_<torrent_resumed_alert, bases<torrent_alert>, noncopyable>(
|
||||
"torrent_resumed_alert", torrent_resumed_alert_doc, no_init
|
||||
);
|
||||
|
||||
class_<torrent_checked_alert, bases<torrent_alert>, noncopyable>(
|
||||
"torrent_checked_alert", torrent_checked_alert_doc, no_init
|
||||
);
|
||||
|
@@ -276,6 +276,9 @@ char const* torrent_paused_alert_doc =
|
||||
"It contains a `torrent_handle` to the torrent in question. This alert\n"
|
||||
"is generated as severity level `alert.severity_levels.warning`.";
|
||||
|
||||
char const* torrent_resumed_alert_doc =
|
||||
"";
|
||||
|
||||
char const* torrent_checked_alert_doc =
|
||||
"";
|
||||
|
||||
|
Reference in New Issue
Block a user