#include <soap_structures.h>
Public Methods | |
SOAPClientInfo () | |
SOAPClientInfo (const SOAPClientInfo &e) | |
bool | operator== (const SOAPClientInfo &other) const |
bool | operator!= (const SOAPClientInfo &other) const |
Public Attributes | |
int | last_cycle_time |
int | average_cycle_time |
A null entity is represented by an id of 0 and/or an empty type. The server will generate the entity ids starting with 1
Definition at line 113 of file soap_structures.h.
|
Definition at line 118 of file soap_structures.h. 00118 {} |
|
Definition at line 119 of file soap_structures.h. 00120 { 00121 last_cycle_time = e.last_cycle_time; 00122 average_cycle_time = e.average_cycle_time; 00123 } |
|
Definition at line 131 of file soap_structures.h. 00132 { 00133 return last_cycle_time != other.last_cycle_time || 00134 average_cycle_time != other.average_cycle_time; 00135 } |
|
Definition at line 125 of file soap_structures.h. 00126 { 00127 return last_cycle_time == other.last_cycle_time && 00128 average_cycle_time == other.average_cycle_time; 00129 } |
|
Definition at line 116 of file soap_structures.h. |
|
Definition at line 115 of file soap_structures.h. |