summaryrefslogtreecommitdiffstats
path: root/lasso/xml/dst_query_response.h
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2004-12-03 11:11:49 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2004-12-03 11:11:49 +0000
commitb2c75f631f435072c2deb6f23ed11824a435cc52 (patch)
tree357dfe11b855826b5f04606eb713f1f95a29ac9e /lasso/xml/dst_query_response.h
parent71400e454e09e6f19aab8781b54f0a39f84ccc02 (diff)
downloadlasso-b2c75f631f435072c2deb6f23ed11824a435cc52.tar.gz
lasso-b2c75f631f435072c2deb6f23ed11824a435cc52.tar.xz
lasso-b2c75f631f435072c2deb6f23ed11824a435cc52.zip
Updated LassoDstQueryResponse with new snippet feature in class instance. Moved schema comment from .h to .c
Diffstat (limited to 'lasso/xml/dst_query_response.h')
-rw-r--r--lasso/xml/dst_query_response.h22
1 files changed, 2 insertions, 20 deletions
diff --git a/lasso/xml/dst_query_response.h b/lasso/xml/dst_query_response.h
index 229dc7e7..8f728ceb 100644
--- a/lasso/xml/dst_query_response.h
+++ b/lasso/xml/dst_query_response.h
@@ -49,26 +49,11 @@ extern "C" {
typedef struct _LassoDstQueryResponse LassoDstQueryResponse;
typedef struct _LassoDstQueryResponseClass LassoDstQueryResponseClass;
-/*
-* Schema fragment (liberty-idwsf-dst-v1.0.xsd):
-* <xs:element name="QueryResponse" type="QueryResponseType"/>
-* <xs:complexType name="QueryResponseType">
-* <xs:sequence>
-* <xs:element ref="Status"/>
-* <xs:element name="Data" minOccurs="0" maxOccurs="unbounded"/>
-* <xs:element ref="Extension" minOccurs="0" maxOccurs="unbounded"/>
-* </xs:sequence>
-* <xs:attribute name="id" type="xs:ID"/>
-* <xs:attribute name="itemIDRef" type="IDReferenceType"/>
-* <xs:attribute name="timeStamp" type="xs:dateTime"/>
-* </xs:complexType>
-*/
-
struct _LassoDstQueryResponse {
LassoNode parent;
LassoUtilityStatus *Status;
- LassoDstData *Data;
+ GList *Data;
/* FIXME : implement Extension element */
char *id;
@@ -81,10 +66,7 @@ struct _LassoDstQueryResponseClass {
};
LASSO_EXPORT GType lasso_dst_query_response_get_type(void);
-LASSO_EXPORT LassoDstQueryResponse* lasso_dst_query_response_new(LassoUtilityStatus *Status,
- const char *id,
- const char *itemIDRef,
- const char *timeStamp);
+LASSO_EXPORT LassoDstQueryResponse* lasso_dst_query_response_new(LassoUtilityStatus *Status);
#ifdef __cplusplus
}