~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to tools/gsoap/gsoap-linux-2.7/samples/xml-rpc/.svn/text-base/xml-rpc-io.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
 
XML-RPC io stream operations on XML-RPC values
4
 
 
5
 
--------------------------------------------------------------------------------
6
 
gSOAP XML Web services tools
7
 
Copyright (C) 2001-2004, Robert van Engelen, Genivia, Inc. All Rights Reserved.
8
 
This software is released under one of the following two licenses:
9
 
GPL or Genivia's license for commercial use.
10
 
--------------------------------------------------------------------------------
11
 
GPL license.
12
 
 
13
 
This program is free software; you can redistribute it and/or modify it under
14
 
the terms of the GNU General Public License as published by the Free Software
15
 
Foundation; either version 2 of the License, or (at your option) any later
16
 
version.
17
 
 
18
 
This program is distributed in the hope that it will be useful, but WITHOUT ANY
19
 
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
20
 
PARTICULAR PURPOSE. See the GNU General Public License for more details.
21
 
 
22
 
You should have received a copy of the GNU General Public License along with
23
 
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
24
 
Place, Suite 330, Boston, MA 02111-1307 USA
25
 
 
26
 
Author contact information:
27
 
engelen@genivia.com / engelen@acm.org
28
 
--------------------------------------------------------------------------------
29
 
A commercial use license is available from Genivia, Inc., contact@genivia.com
30
 
--------------------------------------------------------------------------------
31
 
*/
32
 
 
33
 
extern std::ostream& operator<<(std::ostream&, const struct value&);
34
 
extern std::istream& operator>>(std::istream&, struct value&);
35