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

EasySoap::SOAPTypeTraits< SOAPAgentInfo > Class Reference

serialisation/deserialisation for a soap agent info. More...

#include <soap_structures.h>

List of all members.

Static Public Methods

void GetType (SOAPQName &qname)
SOAPParameter& Serialize (SOAPParameter &param, const SOAPAgentInfo &val)
const SOAPParameter& Deserialize (const SOAPParameter &param, SOAPAgentInfo &val)


Detailed Description

serialisation/deserialisation for a soap agent info.

Definition at line 190 of file soap_structures.h.


Member Function Documentation

const SOAPParameter & EasySoap::SOAPTypeTraits< SOAPAgentInfo >::Deserialize ( const SOAPParameter & param,
SOAPAgentInfo & val ) [inline, static]
 

Parameters:
param  
val  

Definition at line 206 of file soap_structures.h.

00207     {
00208         param.GetParameter("last_cycle_time") >> val.last_cycle_time;
00209         param.GetParameter("average_cycle_time") >> val.average_cycle_time;
00210         param.GetParameter("type") >> val.type;
00211         return param;
00212         }

void EasySoap::SOAPTypeTraits< SOAPAgentInfo >::GetType ( SOAPQName & qname ) [inline, static]
 

Parameters:
qname  

Definition at line 193 of file soap_structures.h.

00194     {
00195         qname.Set("AgentInformation", DALT_Client::name_space);
00196     }

SOAPParameter & EasySoap::SOAPTypeTraits< SOAPAgentInfo >::Serialize ( SOAPParameter & param,
const SOAPAgentInfo & val ) [inline, static]
 

Parameters:
param  
val  

Definition at line 198 of file soap_structures.h.

00199     {
00200         param.AddParameter("last_cycle_time") << val.last_cycle_time;
00201         param.AddParameter("average_cycle_time") << val.average_cycle_time;
00202         param.AddParameter("type") << val.type;
00203         return param;
00204     }


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