Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

EasySoap::SOAPAgentInfo Struct Reference

Agent information. More...

#include <soap_structures.h>

List of all members.

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


Detailed Description

Agent information.

Definition at line 163 of file soap_structures.h.


Constructor & Destructor Documentation

EasySoap::SOAPAgentInfo::SOAPAgentInfo ( ) [inline]
 

Definition at line 169 of file soap_structures.h.

00170     {
00171         last_cycle_time = average_cycle_time = 0;
00172         type = "";
00173     }

EasySoap::SOAPAgentInfo::SOAPAgentInfo ( const SOAPAgentInfo & e ) [inline]
 

Parameters:
e  

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     }


Member Function Documentation

bool EasySoap::SOAPAgentInfo::operator== ( const SOAPAgentInfo & other ) const [inline]
 

Parameters:
other  

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     }


Member Data Documentation

int EasySoap::SOAPAgentInfo::average_cycle_time
 

Definition at line 166 of file soap_structures.h.

int EasySoap::SOAPAgentInfo::last_cycle_time
 

Definition at line 165 of file soap_structures.h.

SOAPString EasySoap::SOAPAgentInfo::type
 

Definition at line 167 of file soap_structures.h.


The documentation for this struct was generated from the following file:
Generated at Thu Jan 31 15:20:24 2002 for DALT Client by doxygen1.2.8 written by Dimitri van Heesch, © 1997-2001