blob: b3d68eed5bf13dc2a9b44687d6136ceaeb30e9a3 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
 |