summaryrefslogtreecommitdiffstats
path: root/wsdl2c/CallFunc.h
diff options
context:
space:
mode:
authorGravatar snowdrop2004-06-03 13:13:07 +0000
committerGravatar snowdrop2004-06-03 13:13:07 +0000
commit5dee322ce245ef858b3d0e6591cdc19d76e4cb30 (patch)
tree0ba0dfe188a4e9da2ebf2c9f32eb8b2e9a9a3401 /wsdl2c/CallFunc.h
parent4666292be1927bdb2e319f417a08ab17c91de784 (diff)
downloadcsoap-5dee322ce245ef858b3d0e6591cdc19d76e4cb30.tar.gz
csoap-5dee322ce245ef858b3d0e6591cdc19d76e4cb30.tar.bz2
initial import
Diffstat (limited to 'wsdl2c/CallFunc.h')
-rw-r--r--wsdl2c/CallFunc.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/wsdl2c/CallFunc.h b/wsdl2c/CallFunc.h
new file mode 100644
index 0000000..8382912
--- /dev/null
+++ b/wsdl2c/CallFunc.h
@@ -0,0 +1,70 @@
+/** Generated by xsd2c*/
+#ifndef __CallFunc_H__
+#define __CallFunc_H__
+
+
+#include "CallVar.h"
+#include "CallVar.h"
+
+#ifndef _DESERIALIZER_DISABLE_
+ #include <libxml/parser.h>
+#endif
+
+
+#define TO_CALLFUNC(derived) (derived->__base)
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+/**
+ * OBJECT: CallFunc
+ */
+struct CallFunc
+{
+ char* name;
+ struct CallVar_List* in_head;
+ struct CallVar_List* in_tail;
+ struct CallVar* out;
+};
+
+/**
+ * LIST: CallFunc_List
+ */
+struct CallFunc_List
+{
+ struct CallFunc* value;
+ struct CallFunc_List* next;
+};
+
+
+struct CallFunc* CallFunc_Create();
+void CallFunc_Free(struct CallFunc* obj);
+void CallFunc_Sax_Serialize(struct CallFunc* obj,
+ const char *root_element_name,
+ void (*OnStartElement)(const char* element_name, int attr_count, char **keys, char **values, void* userData),
+ void (*OnCharacters)(const char* element_name, const char* chars, void* userData),
+ void (*OnEndElement)(const char* element_name, void* userData),
+ void* userData);
+
+#ifndef _DESERIALIZER_DISABLE_
+struct CallFunc* CallFunc_Deserialize(xmlNodePtr xmlRoot);
+#endif
+
+void CallFunc_Set_name(struct CallFunc* obj, const char* name);
+void CallFunc_Set_out(struct CallFunc* obj, struct CallVar* out);
+void CallFunc_Add_in(struct CallFunc* obj, struct CallVar* in);
+char* CallFunc_Get_name(struct CallFunc* obj);
+struct CallVar_List* CallFunc_Get_in(struct CallFunc* obj);
+struct CallVar* CallFunc_Get_out(struct CallFunc* obj);
+
+
+#ifdef __cplusplus
+};
+#endif /*__cplusplus*/
+
+
+
+#endif