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

EasySoap::SOAPTypeTraits< SOAPEntity > Class Reference

serialisation/deserialisation for a soap entity. More...

#include <soap_structures.h>

List of all members.

Static Public Methods

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


Detailed Description

serialisation/deserialisation for a soap entity.

Definition at line 84 of file soap_structures.h.


Member Function Documentation

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

Parameters:
param  
val  

Definition at line 100 of file soap_structures.h.

00101     {
00102         param.GetParameter("entity_id") >> val.entity_id;
00103         param.GetParameter("entity_type") >> val.entity_type;
00104         param.GetParameter("coordinates") >> val.coordinates;
00105         return param;
00106         }

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

Parameters:
qname  

Definition at line 87 of file soap_structures.h.

00088     {
00089         qname.Set("Entity", DALT_Client::name_space);
00090     }

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

Parameters:
param  
val  

Definition at line 92 of file soap_structures.h.

00093     {
00094         param.AddParameter("entity_id") << val.entity_id;
00095         param.AddParameter("entity_type") << val.entity_type;
00096         param.AddParameter("coordinates") << val.coordinates;
00097         return param;
00098     }


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