"urn:address-book-example":address is a complexType.
More...
#include <address.h>
|
virtual int | soap_type (void) const |
| Return the unique type ID value SOAP_TYPE_a__address (11) More...
|
|
virtual void | soap_default (struct soap *) |
| Set object's data members to default values. More...
|
|
virtual void | soap_serialize (struct soap *) const |
| Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures. More...
|
|
virtual int | soap_put (struct soap *, const char *tag, const char *type) const |
| Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK. More...
|
|
virtual int | soap_out (struct soap *, const char *tag, int id, const char *type) const |
| Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK. More...
|
|
virtual void * | soap_get (struct soap *, const char *tag, const char *type) |
| Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error. More...
|
|
virtual void * | soap_in (struct soap *, const char *tag, const char *type) |
| Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error. More...
|
|
virtual a__address * | soap_alloc (void) const |
| Return a new object of type a__address, default initialized and not managed by a soap context. More...
|
|
| a__address () |
|
virtual | ~a__address () |
|
|
std::string | name |
| Element "name" of XSD type xs:string. More...
|
|
std::string | street |
| Element "street" of XSD type xs:string. More...
|
|
std::string | city |
| Element "city" of XSD type xs:string. More...
|
|
std::string | zip |
| Element "zip" of XSD type xs:string. More...
|
|
enum a__ISO_country | country = a__ISO_country__us |
| Element "country" of XSD type "":ISO-country. More...
|
|
std::string * | phone |
| Element "phone" of XSD type xs:string. More...
|
|
std::string * | mobile |
| Element "mobile" of XSD type xs:string. More...
|
|
time_t * | dob |
| Element "dob" of XSD type xs:dateTime. More...
|
|
int | ID |
| Attribute "ID" of XSD type xs:int. More...
|
|
struct soap * | soap |
| A handle to the soap struct context that manages this instance when instantiated by a context or NULL otherwise (automatically set). More...
|
|
"urn:address-book-example":address is a complexType.
An address information item
class a__address operations:
- a__address* soap_new_a__address(soap*) allocate
- a__address* soap_new_a__address(soap*, int num) allocate array
- a__address* soap_new_req_a__address(soap*, ...) allocate, set required members
- a__address* soap_new_set_a__address(soap*, ...) allocate, set all public members
- a__address::soap_default(soap*) reset members to default
- int soap_read_a__address(soap*, a__address*) deserialize from a stream
- int soap_write_a__address(soap*, a__address*) serialize to a stream
- a__address* a__address::soap_dup(soap*) returns deep copy of a__address, copies the (cyclic) graph structure when a context is provided, or (cycle-pruned) tree structure with soap_set_mode(soap, SOAP_XML_TREE) (use soapcpp2 -Ec)
- a__address::soap_del() deep deletes a__address data members, use only after a__address::soap_dup(NULL) (use soapcpp2 -Ed)
Definition at line 206 of file address.h.
a__address::a__address |
( |
| ) |
|
|
inline |
virtual a__address::~a__address |
( |
| ) |
|
|
inlinevirtual |
virtual a__address* a__address::soap_alloc |
( |
void |
| ) |
const |
|
inlinevirtual |
Return a new object of type a__address, default initialized and not managed by a soap context.
Definition at line 104 of file addressStub.h.
virtual void a__address::soap_default |
( |
struct soap * |
| ) |
|
|
virtual |
Set object's data members to default values.
virtual void* a__address::soap_get |
( |
struct soap * |
, |
|
|
const char * |
tag, |
|
|
const char * |
type |
|
) |
| |
|
virtual |
Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error.
virtual void* a__address::soap_in |
( |
struct soap * |
, |
|
|
const char * |
tag, |
|
|
const char * |
type |
|
) |
| |
|
virtual |
Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error.
virtual int a__address::soap_out |
( |
struct soap * |
, |
|
|
const char * |
tag, |
|
|
int |
id, |
|
|
const char * |
type |
|
) |
| const |
|
virtual |
Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK.
virtual int a__address::soap_put |
( |
struct soap * |
, |
|
|
const char * |
tag, |
|
|
const char * |
type |
|
) |
| const |
|
virtual |
Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK.
virtual void a__address::soap_serialize |
( |
struct soap * |
| ) |
const |
|
virtual |
Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures.
virtual int a__address::soap_type |
( |
void |
| ) |
const |
|
inlinevirtual |
Return the unique type ID value SOAP_TYPE_a__address (11)
Definition at line 90 of file addressStub.h.
SOAP_FMAC1 a__address* SOAP_FMAC2 soap_instantiate_a__address |
( |
struct soap * |
, |
|
|
int |
, |
|
|
const char * |
, |
|
|
const char * |
, |
|
|
size_t * |
|
|
) |
| |
|
friend |
std::string a__address::city |
Element "city" of XSD type xs:string.
Required element.
Definition at line 213 of file address.h.
Element "country" of XSD type "":ISO-country.
Default element value="us".
Definition at line 217 of file address.h.
Element "dob" of XSD type xs:dateTime.
Optional element.
Definition at line 223 of file address.h.
Attribute "ID" of XSD type xs:int.
Required attribute.
Definition at line 225 of file address.h.
std::string * a__address::mobile |
Element "mobile" of XSD type xs:string.
Optional element.
Definition at line 221 of file address.h.
std::string a__address::name |
Element "name" of XSD type xs:string.
Required element.
Definition at line 209 of file address.h.
std::string * a__address::phone |
Element "phone" of XSD type xs:string.
Optional element.
Definition at line 219 of file address.h.
struct soap * a__address::soap |
A handle to the soap struct context that manages this instance when instantiated by a context or NULL otherwise (automatically set).
Definition at line 227 of file address.h.
std::string a__address::street |
Element "street" of XSD type xs:string.
Required element.
Definition at line 211 of file address.h.
std::string a__address::zip |
Element "zip" of XSD type xs:string.
Required element.
Definition at line 215 of file address.h.
The documentation for this class was generated from the following files: