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

EasySoap::SOAPClientInfo Struct Reference

The structure corresponding to an entity. More...

#include <soap_structures.h>

List of all members.

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


Detailed Description

The structure corresponding to an entity.

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.


Constructor & Destructor Documentation

EasySoap::SOAPClientInfo::SOAPClientInfo ( ) [inline]
 

Definition at line 118 of file soap_structures.h.

00118 {}

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

Parameters:
e  

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     }


Member Function Documentation

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

Parameters:
other  

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     }

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

Parameters:
other  

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     }


Member Data Documentation

int EasySoap::SOAPClientInfo::average_cycle_time
 

Definition at line 116 of file soap_structures.h.

int EasySoap::SOAPClientInfo::last_cycle_time
 

Definition at line 115 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