~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to tools/gsoap/macosx-2.7/wsdl/.svn/text-base/mime.h.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 
3
 
mime.h
4
 
 
5
 
WSDL/MIME binding schema
6
 
 
7
 
--------------------------------------------------------------------------------
8
 
gSOAP XML Web services tools
9
 
Copyright (C) 2001-2004, Robert van Engelen, Genivia, Inc. All Rights Reserved.
10
 
This software is released under one of the following two licenses:
11
 
GPL or Genivia's license for commercial use.
12
 
--------------------------------------------------------------------------------
13
 
GPL license.
14
 
 
15
 
This program is free software; you can redistribute it and/or modify it under
16
 
the terms of the GNU General Public License as published by the Free Software
17
 
Foundation; either version 2 of the License, or (at your option) any later
18
 
version.
19
 
 
20
 
This program is distributed in the hope that it will be useful, but WITHOUT ANY
21
 
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
22
 
PARTICULAR PURPOSE. See the GNU General Public License for more details.
23
 
 
24
 
You should have received a copy of the GNU General Public License along with
25
 
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
26
 
Place, Suite 330, Boston, MA 02111-1307 USA
27
 
 
28
 
Author contact information:
29
 
engelen@genivia.com / engelen@acm.org
30
 
--------------------------------------------------------------------------------
31
 
A commercial use license is available from Genivia, Inc., contact@genivia.com
32
 
--------------------------------------------------------------------------------
33
 
 
34
 
*/
35
 
 
36
 
//gsoap mime schema documentation:      WSDL/MIME binding schema
37
 
//gsoap mime schema namespace:          http://schemas.xmlsoap.org/wsdl/mime/
38
 
 
39
 
#import "imports.h"
40
 
#import "soap.h"
41
 
 
42
 
class mime__content
43
 
{ public:
44
 
        @xsd__NMTOKEN                   part;
45
 
        @xsd__string                    type;
46
 
};
47
 
 
48
 
class mime__part
49
 
{ public:
50
 
        soap__body                      *soap__body_;
51
 
        std::vector<mime__content>      content;
52
 
};
53
 
 
54
 
class mime__multipartRelated
55
 
{ public:
56
 
        std::vector<mime__part>         part;
57
 
};