0
|
1 /*
|
|
2 struct_timeval.h
|
|
3
|
|
4 Custom serializer for struct timeval
|
|
5
|
|
6 #import this file into your gSOAP .h file to enable struct timeval
|
|
7 serialization and use the serializable xsd__dateTime type.
|
|
8
|
|
9 To automate the wsdl2h-mapping of xsd:dateTime to struct timeval, add
|
|
10 this line to the typemap.dat file:
|
|
11
|
|
12 xsd__dateTime = #import "custom/struct_timeval.h" | xsd__dateTime
|
|
13
|
|
14 The typemap.dat file is used by wsdl2h to map types (wsdl2h option -t).
|
|
15
|
|
16 Link your code with struct_timeval.c
|
|
17
|
|
18 gSOAP XML Web services tools
|
|
19 Copyright (C) 2000-2007, Robert van Engelen, Genivia Inc., All Rights Reserved.
|
|
20 This part of the software is released under ONE of the following licenses:
|
|
21 GPL, the gSOAP public license, OR Genivia's license for commercial use.
|
|
22 --------------------------------------------------------------------------------
|
|
23 gSOAP public license.
|
|
24
|
|
25 The contents of this file are subject to the gSOAP Public License Version 1.3
|
|
26 (the "License"); you may not use this file except in compliance with the
|
|
27 License. You may obtain a copy of the License at
|
|
28 http://www.cs.fsu.edu/~engelen/soaplicense.html
|
|
29 Software distributed under the License is distributed on an "AS IS" basis,
|
|
30 WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
31 for the specific language governing rights and limitations under the License.
|
|
32
|
|
33 The Initial Developer of the Original Code is Robert A. van Engelen.
|
|
34 Copyright (C) 2000-2007, Robert van Engelen, Genivia, Inc., All Rights Reserved.
|
|
35 --------------------------------------------------------------------------------
|
|
36 GPL license.
|
|
37
|
|
38 This program is free software; you can redistribute it and/or modify it under
|
|
39 the terms of the GNU General Public License as published by the Free Software
|
|
40 Foundation; either version 2 of the License, or (at your option) any later
|
|
41 version.
|
|
42
|
|
43 This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
44 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
45 PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
46
|
|
47 You should have received a copy of the GNU General Public License along with
|
|
48 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
49 Place, Suite 330, Boston, MA 02111-1307 USA
|
|
50
|
|
51 Author contact information:
|
|
52 engelen@genivia.com / engelen@acm.org
|
|
53
|
|
54 This program is released under the GPL with the additional exemption that
|
|
55 compiling, linking, and/or using OpenSSL is allowed.
|
|
56 --------------------------------------------------------------------------------
|
|
57 A commercial use license is available from Genivia, Inc., contact@genivia.com
|
|
58 --------------------------------------------------------------------------------
|
|
59 */
|
|
60
|
|
61 #include <sys/time.h>
|
|
62
|
|
63 extern typedef volatile struct timeval
|
|
64 { extern long tv_sec; // transient member: don't serialize
|
|
65 extern long tv_usec; // transient member: don't serialize
|
|
66 } xsd__dateTime;
|