diff options
author | snowdrop | 2004-06-02 11:20:48 +0000 |
---|---|---|
committer | snowdrop | 2004-06-02 11:20:48 +0000 |
commit | 09d5768a1979a70a1069509aa1d55f9db100a285 (patch) | |
tree | 45dd32429688b9a478ccdb87a4f3a21149622f28 /examples/xsd2c/ex3/README | |
parent | b6d27351412b20656f670cea3ae969f5c30c634b (diff) | |
download | csoap-09d5768a1979a70a1069509aa1d55f9db100a285.tar.gz csoap-09d5768a1979a70a1069509aa1d55f9db100a285.tar.bz2 |
initalial import
Diffstat (limited to 'examples/xsd2c/ex3/README')
-rw-r--r-- | examples/xsd2c/ex3/README | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/examples/xsd2c/ex3/README b/examples/xsd2c/ex3/README new file mode 100644 index 0000000..cac48bf --- /dev/null +++ b/examples/xsd2c/ex3/README @@ -0,0 +1,41 @@ +################################################## +# +# PROJECT: xsd2c examples +# CREATED: 02.04.2003 +# WRITTEN BY: Ferhat Ayaz +# +################################################## + +IMPORTANT: + + Please make sure that you understand the following examples: + + ex1 + + ex2 + +DESCRIPTION: + + This example shows you how to derive from a base class. + In this example is 'Person' the base class and 'Customer' + is the derived class. + + +FILES: + + ex3.c : Main program code + ex3.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 + + Customer_xsd.h + + Customer_xsd.c + + |