diff options
Diffstat (limited to 'examples/xsd2c/ex2/README')
-rw-r--r-- | examples/xsd2c/ex2/README | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/examples/xsd2c/ex2/README b/examples/xsd2c/ex2/README new file mode 100644 index 0000000..b3d68ee --- /dev/null +++ b/examples/xsd2c/ex2/README @@ -0,0 +1,40 @@ +################################################## +# +# PROJECT: xsd2c examples +# CREATED: 30.03.2003 +# WRITTEN BY: Ferhat Ayaz +# +################################################## + +IMPORTANT: + + Please make sure that you understand the following examples: + + ex1 + +DESCRIPTION: + + This example uses 2 simple comlexTypes (Person, Address) + to show you how to: + + + set other complexTypes in complexTypes + +FILES: + + ex2.c : Main program code + ex2.xsd : XML Schema + Makefile : The makefile + README : This file + + + After you make the program with + + $>make + + the following c files will be generated: + + + Person_xsd.h + + Person_xsd.c + + Address_xsd.h + + Address_xsd.c + + |