1 | /*
|
---|
2 |
|
---|
3 | stlvector.h
|
---|
4 |
|
---|
5 | Use #import "stlvector.h" in a gSOAP header file to enable STL vectors.
|
---|
6 |
|
---|
7 | Use soapcpp2 option -Ipath:path:... to specify the path(s) for #import
|
---|
8 |
|
---|
9 | gSOAP XML Web services tools
|
---|
10 | Copyright (C) 2000-2005, Robert van Engelen, Genivia Inc., All Rights Reserved.
|
---|
11 | This part of the software is released under one of the following licenses:
|
---|
12 | GPL, the gSOAP public license, or Genivia's license for commercial use.
|
---|
13 | --------------------------------------------------------------------------------
|
---|
14 | gSOAP public license.
|
---|
15 |
|
---|
16 | The contents of this file are subject to the gSOAP Public License Version 1.3
|
---|
17 | (the "License"); you may not use this file except in compliance with the
|
---|
18 | License. You may obtain a copy of the License at
|
---|
19 | http://www.cs.fsu.edu/~engelen/soaplicense.html
|
---|
20 | Software distributed under the License is distributed on an "AS IS" basis,
|
---|
21 | WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
---|
22 | for the specific language governing rights and limitations under the License.
|
---|
23 |
|
---|
24 | The Initial Developer of the Original Code is Robert A. van Engelen.
|
---|
25 | Copyright (C) 2000-2005 Robert A. van Engelen, Genivia inc. All Rights Reserved.
|
---|
26 | --------------------------------------------------------------------------------
|
---|
27 | GPL license.
|
---|
28 |
|
---|
29 | This program is free software; you can redistribute it and/or modify it under
|
---|
30 | the terms of the GNU General Public License as published by the Free Software
|
---|
31 | Foundation; either version 2 of the License, or (at your option) any later
|
---|
32 | version.
|
---|
33 |
|
---|
34 | This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
---|
35 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
---|
36 | PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
---|
37 |
|
---|
38 | You should have received a copy of the GNU General Public License along with
|
---|
39 | this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
---|
40 | Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
41 |
|
---|
42 | Author contact information:
|
---|
43 | [email protected] / [email protected]
|
---|
44 | --------------------------------------------------------------------------------
|
---|
45 | A commercial use license is available from Genivia, Inc., [email protected]
|
---|
46 | --------------------------------------------------------------------------------
|
---|
47 | */
|
---|
48 |
|
---|
49 | #include <vector>
|
---|
50 | template <class T> class std::vector;
|
---|