亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? xml-rpc.h

?? linux下簡(jiǎn)單對(duì)象應(yīng)用協(xié)議的開發(fā)庫
?? H
字號(hào):
/*XML-RPC binding for C or C++--------------------------------------------------------------------------------gSOAP XML Web services toolsCopyright (C) 2001-2004, Robert van Engelen, Genivia, Inc. All Rights Reserved.This software is released under one of the following two licenses:GPL or Genivia's license for commercial use.--------------------------------------------------------------------------------GPL license.This program is free software; you can redistribute it and/or modify it underthe terms of the GNU General Public License as published by the Free SoftwareFoundation; either version 2 of the License, or (at your option) any laterversion.This program is distributed in the hope that it will be useful, but WITHOUT ANYWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR APARTICULAR PURPOSE. See the GNU General Public License for more details.You should have received a copy of the GNU General Public License along withthis program; if not, write to the Free Software Foundation, Inc., 59 TemplePlace, Suite 330, Boston, MA 02111-1307 USAAuthor contact information:engelen@genivia.com / engelen@acm.org--------------------------------------------------------------------------------A commercial use license is available from Genivia, Inc., contact@genivia.com--------------------------------------------------------------------------------*/#include "xml-rpc-iters.h"	// deferred to C++ compiler/// for C++ only: external iterator class for structsextern class _struct_iterator;/// for C++ only: external iterator class for arraysextern class _array_iterator;/// for C++ only: external iterator class for parametersextern class params_iterator;/// Scalar <boolean> elementtypedef char		_boolean;	///< boolean values are 0 (false) or 1 (true)/// Scalar <double> elementtypedef double		_double;	///< double floating point value/// Scalar <i4> elementtypedef int		_i4;		///< 32bit int value/// Scalar <int> elementtypedef int		_int;		///< 32bit int value/// Scalar <string> elementtypedef char*		_string;	///< string value/// Scalar <dateTime.iso8601> elementtypedef char*		_dateTime_DOTiso8601;	///< ISO8601 date and time formatted string/// <base64> binary data elementstruct _base64{ unsigned char*	__ptr;		///< pointer to raw binary data block  int			__size;		///< size of raw binary data block// C++ function members, not available in C (when using stdsoap2 -c)public:  			_base64();  			_base64(struct soap*);  int			size() const;	///< byte size of data  unsigned char*	ptr();		///< pointer to data};/// <struct> elementstruct _struct{ int			__size;		///< number of members  struct member*	member;		///< pointer to member array// C++ function members, not available in C (when using stdsoap2 -c)public:  typedef _struct_iterator iterator;  			_struct();  			_struct(struct soap*);  			_struct(struct soap*, int);  extern bool		empty() const;	///< true when struct is empty  int			size() const;	///< number of accessors in struct  struct value&		operator[](const char*);///< struct accessor index  _struct_iterator	begin();	///< struct accessor iterator begin  _struct_iterator	end();		///< struct accessor iterator end  struct soap*		soap;		///< ref to soap struct that manages this type};/// <data> elementstruct data{ int			__size;		///< number of array elements  struct value*		value;		///< pointer to array elements};/// <array> elementstruct _array{ struct data		data;		///< data with values// C++ function members, not available in C (when using stdsoap2 -c)public:  typedef _array_iterator iterator;  			_array();  			_array(struct soap*);  			_array(struct soap*, int);  extern bool		empty() const;	///< true when array is empty  int			size() const;	///< number of array elements  struct value&		operator[](int);///< array index  _array_iterator	begin();	///< array iterator begin  _array_iterator	end();		///< array iterator end  struct soap*		soap;		///< ref to soap struct that manages this type};/// <value>/**The value element contains either string data stored in __any or an other typeof data stored in a subelement. In case of a subelement, the __type memberindicates the type of data pointed to by the ref member. For example, when__type = SOAP_TYPE__int then *(int*)ref is an integer and when __type =SOAP_TYPE__string (char*)ref is a string.*/struct value{ int			__type 0;	///< optional SOAP_TYPE_X, where X is a type name  void*			ref;		///< ref to data  char*			__any;		///< <value> string content, when present// C++ function members, not available in C (when using stdsoap2 -c)public:			value();			value(struct soap*);			value(struct soap*, struct _array&);			value(struct soap*, struct _base64&);			value(struct soap*, bool);			value(struct soap*, char*);			value(struct soap*, double);			value(struct soap*, int);			value(struct soap*, struct _struct&);			operator struct _array&();			operator const struct _array&() const;			operator struct _base64&();			operator const struct _base64&() const;			operator char*();			operator const char*() const;			operator double() const;			operator int() const;			operator struct _struct&();			operator const struct _struct&() const;  struct value&		operator[](int);  struct value&		operator[](const char*);  struct _array&	operator=(struct _array&);  struct _base64&	operator=(struct _base64&);  extern bool		operator=(bool);  char*			operator=(char*);  double		operator=(double);  int			operator=(int);  struct _struct&	operator=(struct _struct&);  time_t		operator=(time_t);  extern bool		is_array() const;	///< true if value is array type  extern bool		is_base64() const;	///< true if value is base64 type  extern bool		is_bool() const;	///< true if value is boolean type  extern bool		is_double() const;	///< true if value is double type  extern bool		is_false() const;	///< true if value is boolean false  extern bool		is_int() const;		///< true if value is int type  extern bool		is_string() const;	///< true if value is string type  extern bool		is_struct() const;	///< true if value is struct type  extern bool		is_true() const;	///< true if value is boolean true  struct soap*		soap;		///< ref to soap struct that manages this type};/// <member>struct member{ char*			name;		///< struct accessor name  struct value		value;		///< struct accessor value};/// <params>struct params{ int			__size;		///< number of parameters  struct param*		param;		///< pointer to array of parameters// C++ function members, not available in C (when using stdsoap2 -c)public:  typedef params_iterator iterator;  			params();  			params(struct soap*);  			params(struct soap*, int);  extern bool		empty() const;	///< true if no parameters  int			size() const;	///< number of parameters  struct value&		operator[](int);///< parameter index  params_iterator	begin();	///< struct accessor iterator begin  params_iterator	end();		///< struct accessor iterator end  struct soap*		soap;		///< ref to soap struct that manages this type};/// <param>struct param{ struct value		value;		///< parameter value// C++ function members, not available in C (when using stdsoap2 -c)public:  struct soap*		soap;		///< ref to soap struct that manages this type};/// <methodResponse> struct methodResponse{ struct params*	params;		///< response parameters  struct fault*		fault;		///< response faultpublic:  			methodResponse();  			methodResponse(struct soap*);  struct soap*		soap;		///< ref to soap struct that manages this type};  /// <methodCall>struct methodCall{ char*			methodName;	///< name of the method  struct params		params;		///< method request parameters// C++ function members, not available in C (when using stdsoap2 -c)private:  char*			methodEndpoint;	///< XML-RPC endpoint  struct methodResponse*methodResponse; ///< holds the response after the callpublic:  			methodCall();  			methodCall(struct soap*, const char*, const char*);  struct value&		operator[](int);///< method parameter accessor index  struct params&	operator()();	///< method invocation  struct params&	operator()(const struct params&);  					///< method invocation with param list  struct params&	response();	///< get last response  struct value&		fault();	///< fault value  int			error() const;	///< gSOAP error code  struct soap*		soap;		///< ref to soap struct that manages this type};/// <fault>struct fault{ struct value		value;		///< value of the fault};

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
7777精品伊人久久久大香线蕉| 国产亚洲va综合人人澡精品| 国产成人av资源| 久久伊人中文字幕| 波多野洁衣一区| 91伊人久久大香线蕉| 久久精品国产第一区二区三区| 久久久99精品免费观看不卡| 欧美三级乱人伦电影| 91行情网站电视在线观看高清版| 欧美性三三影院| 精品久久一区二区三区| 亚洲另类春色国产| 一区二区三区免费在线观看| 国产伦精品一区二区三区免费迷| 久久久久国产一区二区三区四区 | 久久综合九色综合久久久精品综合| 日本一区二区三区免费乱视频| 五月激情六月综合| 欧美视频在线播放| 亚洲成人一区在线| 欧美三级日韩在线| 日韩国产高清影视| 欧美一区二区人人喊爽| 亚洲人成亚洲人成在线观看图片| 欧美丝袜丝交足nylons| 国产精品自在欧美一区| 国产精品二三区| 亚洲欧洲日产国码二区| 国产精品网站导航| 粉嫩久久99精品久久久久久夜| 成人视屏免费看| 欧美激情一区二区在线| 成人激情小说乱人伦| 日本一区二区三区高清不卡 | 久久久www成人免费无遮挡大片| 日韩不卡手机在线v区| 青青草原综合久久大伊人精品| 亚洲国产视频在线| 色菇凉天天综合网| 久久亚洲影视婷婷| 99久久精品免费看国产| 亚洲男人天堂一区| 成人精品一区二区三区中文字幕| 亚洲男人都懂的| 亚洲欧美怡红院| 中文字幕一区日韩精品欧美| 国产日韩精品一区二区三区在线| 欧美一区二区三区免费在线看 | 日韩精品一区二区三区中文精品 | 一区二区三区免费网站| 欧美精品一区二区在线播放| 一本久久a久久精品亚洲| 国产1区2区3区精品美女| 美女一区二区视频| 麻豆精品久久久| 久久黄色级2电影| 久久91精品久久久久久秒播| 免费一级欧美片在线观看| 日韩一区欧美小说| 亚洲欧美另类小说视频| 亚洲色图欧洲色图婷婷| 日韩一区有码在线| 国产精品久久久久久福利一牛影视| 欧美zozozo| 日韩午夜电影av| 欧美亚洲国产一区在线观看网站| 粉嫩aⅴ一区二区三区四区五区| 久久精品99国产精品日本| 国产高清无密码一区二区三区| 成人免费视频网站在线观看| youjizz国产精品| 欧美亚日韩国产aⅴ精品中极品| 欧美日韩欧美一区二区| 日韩精品中文字幕一区| 久久综合中文字幕| 亚洲精品精品亚洲| 蜜桃av噜噜一区| 看国产成人h片视频| 成人avav影音| 欧美日韩精品系列| 久久久久久久久久久黄色| 亚洲精品va在线观看| 毛片不卡一区二区| 91偷拍与自偷拍精品| 正在播放亚洲一区| 欧美国产综合一区二区| 亚洲大片精品永久免费| 国产99精品国产| 粉嫩一区二区三区在线看| 欧美性猛交一区二区三区精品| 精品国产精品网麻豆系列| 中文字幕精品综合| 日本成人在线网站| 不卡一二三区首页| 26uuu色噜噜精品一区二区| 亚洲一区av在线| 国产精品白丝av| 欧美日韩在线直播| 国产三级久久久| 亚洲国产一区二区视频| 丁香六月综合激情| 日韩欧美国产小视频| 亚洲风情在线资源站| 成人高清视频在线| 欧美亚洲国产一区二区三区va| 久久久久久久久久久久久夜| 亚洲成av人影院| www.久久精品| 欧美一级高清片| 亚洲卡通欧美制服中文| 成人网男人的天堂| 久久精品一区二区三区av| 奇米影视在线99精品| 欧美日韩国产综合一区二区| 中文字幕一区二区三中文字幕| 蓝色福利精品导航| 5566中文字幕一区二区电影| |精品福利一区二区三区| 经典三级一区二区| 欧美在线不卡视频| 中文字幕一区二区三区在线播放| 韩国成人福利片在线播放| 91精品麻豆日日躁夜夜躁| 日韩理论电影院| 国产精品77777| 国产欧美综合在线| 成人精品鲁一区一区二区| 国产蜜臀av在线一区二区三区| 国产精品一二三四| 国产日韩影视精品| 日本亚洲最大的色成网站www| 午夜精品视频一区| 欧美亚洲一区二区三区四区| 亚洲国产美女搞黄色| 欧美少妇一区二区| 国产精品久久久久毛片软件| 99国产精品久久久久久久久久 | 欧美一区二区三区在线观看 | 午夜电影网亚洲视频| 色老头久久综合| 亚洲国产日日夜夜| 在线观看亚洲专区| 日韩av午夜在线观看| 欧美一区二区三区播放老司机| 蜜臀av性久久久久av蜜臀妖精 | 日产欧产美韩系列久久99| 欧美一区二区三区在线视频| 国产一区二区三区在线看麻豆 | 国产成人av影院| 欧美日韩在线播放一区| 无码av中文一区二区三区桃花岛| 欧美日韩精品是欧美日韩精品| 精品一区二区三区免费视频| 中文字幕不卡三区| 欧美午夜片在线观看| 久久不见久久见免费视频1| 国产精品久久久久一区二区三区共| 欧美在线短视频| 日韩精品欧美精品| 欧美一区二区三区视频在线观看| 国产综合色产在线精品| 亚洲精品国产无天堂网2021| 欧美日韩国产一二三| 福利一区二区在线观看| 洋洋av久久久久久久一区| 欧美日韩一区高清| 国产a级毛片一区| 一区二区三区四区激情| 8x8x8国产精品| 成人av电影在线| 日韩国产高清在线| 亚洲色图.com| 日韩欧美在线123| 色诱亚洲精品久久久久久| 国产一区二三区好的| 亚洲精品高清在线| 欧美精品一区二区在线观看| 欧美日韩精品一区二区天天拍小说| 日本一不卡视频| 日韩欧美黄色影院| 在线视频一区二区三区| 国产盗摄一区二区| 日本vs亚洲vs韩国一区三区二区| 亚洲天堂免费看| 欧美变态凌虐bdsm| 欧美高清性hdvideosex| 91在线看国产| 国产最新精品免费| 五月天中文字幕一区二区| 综合网在线视频| 久久久91精品国产一区二区精品| 91亚洲大成网污www| 久久超碰97人人做人人爱| 一区二区在线观看视频| 久久精品亚洲精品国产欧美| 欧美一卡2卡3卡4卡| 欧美精品1区2区| 日韩一区二区影院| 制服丝袜亚洲播放|