summaryrefslogtreecommitdiffstats
path: root/lasso/xml/soap_binding_processing_context.h
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2005-03-11 17:15:15 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2005-03-11 17:15:15 +0000
commit0dd0bcf86bb6dc93b0bd24fc4bee858e203b7573 (patch)
tree39e66ccefaa82548caf04fc1ff23e7dfd6529c6c /lasso/xml/soap_binding_processing_context.h
parent4d13c7af97ecd84bbfb62c745bc286ecc01b519d (diff)
downloadlasso-0dd0bcf86bb6dc93b0bd24fc4bee858e203b7573.tar.gz
lasso-0dd0bcf86bb6dc93b0bd24fc4bee858e203b7573.tar.xz
lasso-0dd0bcf86bb6dc93b0bd24fc4bee858e203b7573.zip
Complete liberty soap binding.
Diffstat (limited to 'lasso/xml/soap_binding_processing_context.h')
-rw-r--r--lasso/xml/soap_binding_processing_context.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/lasso/xml/soap_binding_processing_context.h b/lasso/xml/soap_binding_processing_context.h
new file mode 100644
index 00000000..f1cf18ec
--- /dev/null
+++ b/lasso/xml/soap_binding_processing_context.h
@@ -0,0 +1,74 @@
+/* $Id$
+ *
+ * Lasso - A free implementation of the Liberty Alliance specifications.
+ *
+ * Copyright (C) 2004, 2005 Entr'ouvert
+ * http://lasso.entrouvert.org
+ *
+ * Authors: See AUTHORS file in top-level directory.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#ifndef __LASSO_SOAP_BINDING_PROCESSING_CONTEXT_H__
+#define __LASSO_SOAP_BINDING_PROCESSING_CONTEXT_H__
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+#include <lasso/xml/xml.h>
+
+#define LASSO_TYPE_SOAP_BINDING_PROCESSING_CONTEXT \
+ (lasso_soap_binding_processing_context_get_type())
+#define LASSO_SOAP_BINDING_PROCESSING_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \
+ LASSO_TYPE_SOAP_BINDING_PROCESSING_CONTEXT, LassoSoapBindingProcessingContext))
+#define LASSO_SOAP_BINDING_PROCESSING_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
+ LASSO_TYPE_SOAP_BINDING_PROCESSING_CONTEXT, LassoSoapBindingProcessingContextClass))
+#define LASSO_IS_SOAP_BINDING_PROCESSING_CONTEXT(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), LASSO_TYPE_SOAP_BINDING_PROCESSING_CONTEXT))
+#define LASSO_IS_SOAP_BINDING_PROCESSING_CONTEXT_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE ((klass),LASSO_TYPE_SOAP_BINDING_PROCESSING_CONTEXT))
+#define LASSO_SOAP_BINDING_PROCESSING_CONTEXT_GET_CLASS(o) \
+ (G_TYPE_INSTANCE_GET_CLASS ((o), LASSO_TYPE_SOAP_BINDING_PROCESSING_CONTEXT, \
+ LassoSoapBindingProcessingContextClass))
+
+typedef struct _LassoSoapBindingProcessingContext LassoSoapBindingProcessingContext;
+typedef struct _LassoSoapBindingProcessingContextClass LassoSoapBindingProcessingContextClass;
+
+struct _LassoSoapBindingProcessingContext {
+ LassoNode parent;
+
+ gchar *id;
+ gchar *mustUnderstand;
+ gchar *actor;
+};
+
+struct _LassoSoapBindingProcessingContextClass {
+ LassoNodeClass parent;
+};
+
+LASSO_EXPORT GType lasso_soap_binding_processing_context_get_type(void);
+
+LASSO_EXPORT LassoSoapBindingProcessingContext* lasso_soap_binding_processing_context_new();
+
+LASSO_EXPORT LassoSoapBindingProcessingContext* \
+ lasso_soap_binding_processing_context_new_from_message(const gchar *message);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __LASSO_SOAP_BINDING_PROCESSING_CONTEXT_H__ */