blob: 3303af934dfa41763cfceddb1c990f694cd5a80b (
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
|
##################################################
#
# PROJECT: xsd2c examples
# CREATED: 27.05.2004
# WRITTEN BY: Ferhat Ayaz
#
##################################################
DESCRIPTION:
This example uses a simple comlexType (Person)
to show you how to:
+ deserialize
a xsd object in c
FILES:
ex4.c : Main program code
ex4.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
|