@@ -27,8 +27,9 @@ class Engine;
27
27
28
28
enum class ErrorType : int
29
29
{
30
- GENERIC = 0 , // ! Generic error, just show the message
31
- INIT_MONITOR = 1 // ! Error in @c init_monitor. Reopen the @c init_monitor dialog
30
+ GENERIC = 0 , // ! Generic error, just show the message
31
+ INIT_MONITOR = 1 , // ! Error in @c init_monitor. Reopen the @c init dds monitor dialog
32
+ INIT_DS_MONITOR = 2 // ! Error in @c init_monitor. Reopen the @c init discovery server monitor dialog
32
33
};
33
34
34
35
/* *
@@ -63,9 +64,10 @@ public slots:
63
64
void init_monitor (
64
65
int domain);
65
66
66
- // ! Slot called by init a monitor with a list of locators
67
+ // ! Slot called when initializing a monitor for a Discovery Server network
67
68
void init_monitor (
68
- QString locators);
69
+ QString discovery_server_guid_prefix,
70
+ QString discovery_server_locators);
69
71
70
72
// ! Slot called when a Host entity is pressed
71
73
void host_click (
@@ -188,6 +190,9 @@ public slots:
188
190
QStringList chartbox_names,
189
191
QStringList label_names);
190
192
193
+ // ! Retrive a string list containing the transport protocols supported by the Statistics Backend Discovery Server.
194
+ QStringList ds_supported_transports ();
195
+
191
196
signals:
192
197
193
198
// ! Signal to show the Error Dialog
0 commit comments