diff GEMBASSY-1.0.3/gsoap/wsdl/includes.h @ 2:8947fca5f715 draft default tip

Uploaded
author ktnyt
date Fri, 26 Jun 2015 05:21:44 -0400
parents 84a17b3fad1f
children
line wrap: on
line diff
--- a/GEMBASSY-1.0.3/gsoap/wsdl/includes.h	Fri Jun 26 05:20:29 2015 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,162 +0,0 @@
-/*
-	includes.h
-
-	Common project definitions
-
---------------------------------------------------------------------------------
-gSOAP XML Web services tools
-Copyright (C) 2001-2012, Robert van Engelen, Genivia Inc. All Rights Reserved.
-This software is released under one of the following licenses:
-GPL or Genivia's license for commercial use.
---------------------------------------------------------------------------------
-GPL license.
-
-This program is free software; you can redistribute it and/or modify it under
-the terms of the GNU General Public License as published by the Free Software
-Foundation; either version 2 of the License, or (at your option) any later
-version.
-
-This program is distributed in the hope that it will be useful, but WITHOUT ANY
-WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License along with
-this program; if not, write to the Free Software Foundation, Inc., 59 Temple
-Place, Suite 330, Boston, MA 02111-1307 USA
-
-Author contact information:
-engelen@genivia.com / engelen@acm.org
---------------------------------------------------------------------------------
-A commercial use license is available from Genivia, Inc., contact@genivia.com
---------------------------------------------------------------------------------
-
-*/
-
-#ifndef INCLUDES_H
-#define INCLUDES_H
-
-#include "stdsoap2.h"
-
-#ifdef WITH_OPENSSL
-#include "httpda.h"
-#endif
-
-#define WSDL2H_VERSION "2.8.17r"
-
-#ifdef WIN32
-# pragma warning(disable : 4996)
-#endif
-
-#include <utility>
-#include <iterator>
-#include <vector>
-#include <set>
-#include <map>
-
-using namespace std;
-
-struct ltstr
-{ bool operator()(const char *s1, const char *s2) const
-  { return strcmp(s1, s2) < 0;
-  }
-}; 
-
-struct eqstr
-{ const char *s;
-  eqstr(const char *s) : s(s) { }
-  bool operator()(const char *t) const
-  { return strcmp(s, t) == 0;
-  }
-}; 
-
-typedef set<const char*, ltstr> SetOfString;
-
-typedef pair<const char*, const char*> Pair;
-
-struct ltpair
-{ bool operator()(Pair s1, Pair s2) const
-  { int cmp = strcmp(s1.first, s2.first);
-    if (cmp == 0)
-      cmp = strcmp(s1.second, s2.second);
-    return cmp < 0;
-  }
-};
-
-typedef map<const char*, const char*, ltstr> MapOfStringToString;
-
-typedef map<Pair, const char*, ltpair> MapOfPairToString;
-
-typedef map<const char*, size_t, ltstr> MapOfStringToNum;
-
-typedef vector<const char*> VectorOfString;
-
-extern int _flag,
-           aflag,
-           bflag,
-	   cflag,
-	   dflag,
-	   eflag,
-	   fflag,
-	   gflag,
-	   iflag,
-	   jflag,
-	   kflag,
-	   mflag,
-	   pflag,
-	   Pflag,
-	   Rflag,
-	   sflag,
-	   uflag,
-	   vflag,
-	   wflag,
-	   Wflag,
-	   xflag,
-	   yflag,
-	   zflag;
-
-extern FILE *stream;
-
-extern SetOfString exturis;
-
-#define MAXINFILES (1000)
-
-extern int infiles;
-extern char *infile[MAXINFILES], *outfile, *proxy_host, *proxy_userid, *proxy_passwd, *auth_userid, *auth_passwd;
-extern const char *mapfile, *import_path, *cwd_path, *cppnamespace;
-
-extern int proxy_port;
-
-extern const char *service_prefix;
-extern const char *schema_prefix;
-
-extern const char elementformat[];
-extern const char pointerformat[];
-extern const char attributeformat[];
-extern const char vectorformat_open[];
-extern const char vectorformat[];
-extern const char pointervectorformat[];
-extern const char arrayformat[];
-extern const char arraysizeformat[];
-extern const char arrayoffsetformat[];
-extern const char sizeformat[];
-extern const char choiceformat[];
-extern const char schemaformat[];
-extern const char serviceformat[];
-extern const char paraformat[];
-extern const char anonformat[];
-extern const char copyrightnotice[];
-extern const char licensenotice[];
-
-extern void *emalloc(size_t size);
-extern char *estrdup(const char *s);
-extern char *estrdupf(const char *s);
-
-extern void text(const char*);
-
-class Types;
-class Message;
-class Operation;
-class Service;
-class Definitions;
-
-#endif