#include <soap_structures.h>
Public Methods | |
SOAPAgentInfo () | |
SOAPAgentInfo (const SOAPAgentInfo &e) | |
bool | operator== (const SOAPAgentInfo &other) const |
Public Attributes | |
int | last_cycle_time |
int | average_cycle_time |
SOAPString | type |
Definition at line 163 of file soap_structures.h.
|
Definition at line 169 of file soap_structures.h. 00170 { 00171 last_cycle_time = average_cycle_time = 0; 00172 type = ""; 00173 } |
|
Definition at line 174 of file soap_structures.h. 00175 { 00176 last_cycle_time = e.last_cycle_time; 00177 average_cycle_time = e.average_cycle_time; 00178 type = e.type; 00179 } |
|
Definition at line 181 of file soap_structures.h. 00182 { 00183 return last_cycle_time == other.last_cycle_time && 00184 average_cycle_time == other.average_cycle_time && 00185 type == other.type; 00186 } |
|
Definition at line 166 of file soap_structures.h. |
|
Definition at line 165 of file soap_structures.h. |
|
Definition at line 167 of file soap_structures.h. |