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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? sigslot.h

?? 由GOOGLE的JINGLE項(xiàng)目中移植的網(wǎng)絡(luò)庫(kù)
?? H
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
// sigslot.h: Signal/Slot classes// // Written by Sarah Thompson (sarah@telergy.com) 2002.//// License: Public domain. You are free to use this code however you like, with the proviso that//          the author takes on no responsibility or liability for any use.//// QUICK DOCUMENTATION //		//				(see also the full documentation at http://sigslot.sourceforge.net/)////		#define switches//			SIGSLOT_PURE_ISO			- Define this to force ISO C++ compliance. This also disables//										  all of the thread safety support on platforms where it is //										  available.////			SIGSLOT_USE_POSIX_THREADS	- Force use of Posix threads when using a C++ compiler other than//										  gcc on a platform that supports Posix threads. (When using gcc,//										  this is the default - use SIGSLOT_PURE_ISO to disable this if //										  necessary)////			SIGSLOT_DEFAULT_MT_POLICY	- Where thread support is enabled, this defaults to multi_threaded_global.//										  Otherwise, the default is single_threaded. #define this yourself to//										  override the default. In pure ISO mode, anything other than//										  single_threaded will cause a compiler error.////		PLATFORM NOTES////			Win32						- On Win32, the WIN32 symbol must be #defined. Most mainstream//										  compilers do this by default, but you may need to define it//										  yourself if your build environment is less standard. This causes//										  the Win32 thread support to be compiled in and used automatically.////			Unix/Linux/BSD, etc.		- If you're using gcc, it is assumed that you have Posix threads//										  available, so they are used automatically. You can override this//										  (as under Windows) with the SIGSLOT_PURE_ISO switch. If you're using//										  something other than gcc but still want to use Posix threads, you//										  need to #define SIGSLOT_USE_POSIX_THREADS.////			ISO C++						- If none of the supported platforms are detected, or if//										  SIGSLOT_PURE_ISO is defined, all multithreading support is turned off,//										  along with any code that might cause a pure ISO C++ environment to//										  complain. Before you ask, gcc -ansi -pedantic won't compile this //										  library, but gcc -ansi is fine. Pedantic mode seems to throw a lot of//										  errors that aren't really there. If you feel like investigating this,//										  please contact the author.////		//		THREADING MODES////			single_threaded				- Your program is assumed to be single threaded from the point of view//										  of signal/slot usage (i.e. all objects using signals and slots are//										  created and destroyed from a single thread). Behaviour if objects are//										  destroyed concurrently is undefined (i.e. you'll get the occasional//										  segmentation fault/memory exception).////			multi_threaded_global		- Your program is assumed to be multi threaded. Objects using signals and//										  slots can be safely created and destroyed from any thread, even when//										  connections exist. In multi_threaded_global mode, this is achieved by a//										  single global mutex (actually a critical section on Windows because they//										  are faster). This option uses less OS resources, but results in more//										  opportunities for contention, possibly resulting in more context switches//										  than are strictly necessary.////			multi_threaded_local		- Behaviour in this mode is essentially the same as multi_threaded_global,//										  except that each signal, and each object that inherits has_slots, all //										  have their own mutex/critical section. In practice, this means that//										  mutex collisions (and hence context switches) only happen if they are//										  absolutely essential. However, on some platforms, creating a lot of //										  mutexes can slow down the whole OS, so use this option with care.////		USING THE LIBRARY////			See the full documentation at http://sigslot.sourceforge.net/////#ifndef SIGSLOT_H__#define SIGSLOT_H__#include <set>#include <list>// On our copy of sigslot.h, we force single threading#define SIGSLOT_PURE_ISO
#if defined(SIGSLOT_PURE_ISO) || (!defined(WIN32) && !defined(__GNUG__) && !defined(SIGSLOT_USE_POSIX_THREADS))#	define _SIGSLOT_SINGLE_THREADED#elif defined(WIN32)#	define _SIGSLOT_HAS_WIN32_THREADS#	include <windows.h>#elif defined(__GNUG__) || defined(SIGSLOT_USE_POSIX_THREADS)#	define _SIGSLOT_HAS_POSIX_THREADS#	include <pthread.h>#else#	define _SIGSLOT_SINGLE_THREADED#endif#ifndef SIGSLOT_DEFAULT_MT_POLICY#	ifdef _SIGSLOT_SINGLE_THREADED#		define SIGSLOT_DEFAULT_MT_POLICY single_threaded#	else#		define SIGSLOT_DEFAULT_MT_POLICY multi_threaded_local#	endif#endifnamespace sigslot {	class single_threaded	{	public:		single_threaded()		{			;		}		virtual ~single_threaded()		{			;		}		virtual void lock()		{			;		}		virtual void unlock()		{			;		}	};#ifdef _SIGSLOT_HAS_WIN32_THREADS	// The multi threading policies only get compiled in if they are enabled.	class multi_threaded_global	{	public:		multi_threaded_global()		{			static bool isinitialised = false;			if(!isinitialised)			{				InitializeCriticalSection(get_critsec());				isinitialised = true;			}		}		multi_threaded_global(const multi_threaded_global&)		{			;		}		virtual ~multi_threaded_global()		{			;		}		virtual void lock()		{			EnterCriticalSection(get_critsec());		}		virtual void unlock()		{			LeaveCriticalSection(get_critsec());		}	private:		CRITICAL_SECTION* get_critsec()		{			static CRITICAL_SECTION g_critsec;			return &g_critsec;		}	};	class multi_threaded_local	{	public:		multi_threaded_local()		{			InitializeCriticalSection(&m_critsec);		}		multi_threaded_local(const multi_threaded_local&)		{			InitializeCriticalSection(&m_critsec);		}		virtual ~multi_threaded_local()		{			DeleteCriticalSection(&m_critsec);		}		virtual void lock()		{			EnterCriticalSection(&m_critsec);		}		virtual void unlock()		{			LeaveCriticalSection(&m_critsec);		}	private:		CRITICAL_SECTION m_critsec;	};#endif // _SIGSLOT_HAS_WIN32_THREADS#ifdef _SIGSLOT_HAS_POSIX_THREADS	// The multi threading policies only get compiled in if they are enabled.	class multi_threaded_global	{	public:		multi_threaded_global()		{			pthread_mutex_init(get_mutex(), NULL);		}		multi_threaded_global(const multi_threaded_global&)		{			;		}		virtual ~multi_threaded_global()		{			;		}		virtual void lock()		{			pthread_mutex_lock(get_mutex());		}		virtual void unlock()		{			pthread_mutex_unlock(get_mutex());		}	private:		pthread_mutex_t* get_mutex()		{			static pthread_mutex_t g_mutex;			return &g_mutex;		}	};	class multi_threaded_local	{	public:		multi_threaded_local()		{			pthread_mutex_init(&m_mutex, NULL);		}		multi_threaded_local(const multi_threaded_local&)		{			pthread_mutex_init(&m_mutex, NULL);		}		virtual ~multi_threaded_local()		{			pthread_mutex_destroy(&m_mutex);		}		virtual void lock()		{			pthread_mutex_lock(&m_mutex);		}		virtual void unlock()		{			pthread_mutex_unlock(&m_mutex);		}	private:		pthread_mutex_t m_mutex;	};#endif // _SIGSLOT_HAS_POSIX_THREADS	template<class mt_policy>	class lock_block	{	public:		mt_policy *m_mutex;		lock_block(mt_policy *mtx)			: m_mutex(mtx)		{			m_mutex->lock();		}		~lock_block()		{			m_mutex->unlock();		}	};	template<class mt_policy>	class has_slots;	template<class mt_policy>	class _connection_base0	{	public:		virtual has_slots<mt_policy>* getdest() const = 0;		virtual void emit() = 0;		virtual _connection_base0* clone() = 0;		virtual _connection_base0* duplicate(has_slots<mt_policy>* pnewdest) = 0;	};	template<class arg1_type, class mt_policy>	class _connection_base1	{	public:		virtual has_slots<mt_policy>* getdest() const = 0;		virtual void emit(arg1_type) = 0;		virtual _connection_base1<arg1_type, mt_policy>* clone() = 0;		virtual _connection_base1<arg1_type, mt_policy>* duplicate(has_slots<mt_policy>* pnewdest) = 0;	};	template<class arg1_type, class arg2_type, class mt_policy>	class _connection_base2	{	public:		virtual has_slots<mt_policy>* getdest() const = 0;		virtual void emit(arg1_type, arg2_type) = 0;		virtual _connection_base2<arg1_type, arg2_type, mt_policy>* clone() = 0;		virtual _connection_base2<arg1_type, arg2_type, mt_policy>* duplicate(has_slots<mt_policy>* pnewdest) = 0;	};	template<class arg1_type, class arg2_type, class arg3_type, class mt_policy>	class _connection_base3	{	public:		virtual has_slots<mt_policy>* getdest() const = 0;		virtual void emit(arg1_type, arg2_type, arg3_type) = 0;		virtual _connection_base3<arg1_type, arg2_type, arg3_type, mt_policy>* clone() = 0;		virtual _connection_base3<arg1_type, arg2_type, arg3_type, mt_policy>* duplicate(has_slots<mt_policy>* pnewdest) = 0;	};	template<class arg1_type, class arg2_type, class arg3_type, class arg4_type, class mt_policy>	class _connection_base4	{	public:		virtual has_slots<mt_policy>* getdest() const = 0;		virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type) = 0;		virtual _connection_base4<arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>* clone() = 0;		virtual _connection_base4<arg1_type, arg2_type, arg3_type, arg4_type, mt_policy>* duplicate(has_slots<mt_policy>* pnewdest) = 0;	};	template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,	class arg5_type, class mt_policy>	class _connection_base5	{	public:		virtual has_slots<mt_policy>* getdest() const = 0;		virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, 			arg5_type) = 0;		virtual _connection_base5<arg1_type, arg2_type, arg3_type, arg4_type,			arg5_type, mt_policy>* clone() = 0;		virtual _connection_base5<arg1_type, arg2_type, arg3_type, arg4_type,			arg5_type, mt_policy>* duplicate(has_slots<mt_policy>* pnewdest) = 0;	};	template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,	class arg5_type, class arg6_type, class mt_policy>	class _connection_base6	{	public:		virtual has_slots<mt_policy>* getdest() const = 0;		virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, arg5_type,			arg6_type) = 0;		virtual _connection_base6<arg1_type, arg2_type, arg3_type, arg4_type,			arg5_type, arg6_type, mt_policy>* clone() = 0;		virtual _connection_base6<arg1_type, arg2_type, arg3_type, arg4_type,			arg5_type, arg6_type, mt_policy>* duplicate(has_slots<mt_policy>* pnewdest) = 0;	};	template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,	class arg5_type, class arg6_type, class arg7_type, class mt_policy>	class _connection_base7	{	public:		virtual has_slots<mt_policy>* getdest() const = 0;		virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, arg5_type,			arg6_type, arg7_type) = 0;		virtual _connection_base7<arg1_type, arg2_type, arg3_type, arg4_type,			arg5_type, arg6_type, arg7_type, mt_policy>* clone() = 0;		virtual _connection_base7<arg1_type, arg2_type, arg3_type, arg4_type,			arg5_type, arg6_type, arg7_type, mt_policy>* duplicate(has_slots<mt_policy>* pnewdest) = 0;	};	template<class arg1_type, class arg2_type, class arg3_type, class arg4_type,	class arg5_type, class arg6_type, class arg7_type, class arg8_type, class mt_policy>	class _connection_base8	{	public:		virtual has_slots<mt_policy>* getdest() const = 0;		virtual void emit(arg1_type, arg2_type, arg3_type, arg4_type, arg5_type,			arg6_type, arg7_type, arg8_type) = 0;		virtual _connection_base8<arg1_type, arg2_type, arg3_type, arg4_type,			arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>* clone() = 0;		virtual _connection_base8<arg1_type, arg2_type, arg3_type, arg4_type,			arg5_type, arg6_type, arg7_type, arg8_type, mt_policy>* duplicate(has_slots<mt_policy>* pnewdest) = 0;	};	template<class mt_policy>	class _signal_base : public mt_policy	{	public:		virtual void slot_disconnect(has_slots<mt_policy>* pslot) = 0;		virtual void slot_duplicate(const has_slots<mt_policy>* poldslot, has_slots<mt_policy>* pnewslot) = 0;	};	template<class mt_policy = SIGSLOT_DEFAULT_MT_POLICY>	class has_slots : public mt_policy 	{	private:		typedef typename std::set<_signal_base<mt_policy> *> sender_set;		typedef typename sender_set::const_iterator const_iterator;	public:		has_slots()		{			;		}		has_slots(const has_slots& hs)			: mt_policy(hs)		{			lock_block<mt_policy> lock(this);			const_iterator it = hs.m_senders.begin();			const_iterator itEnd = hs.m_senders.end();			while(it != itEnd)			{				(*it)->slot_duplicate(&hs, this);				m_senders.insert(*it);				++it;			}		} 		void signal_connect(_signal_base<mt_policy>* sender)		{			lock_block<mt_policy> lock(this);			m_senders.insert(sender);		}		void signal_disconnect(_signal_base<mt_policy>* sender)		{			lock_block<mt_policy> lock(this);			m_senders.erase(sender);		}		virtual ~has_slots()		{			disconnect_all();		}		void disconnect_all()		{			lock_block<mt_policy> lock(this);			const_iterator it = m_senders.begin();			const_iterator itEnd = m_senders.end();			while(it != itEnd)			{				(*it)->slot_disconnect(this);				++it;			}			m_senders.erase(m_senders.begin(), m_senders.end());		}	private:		sender_set m_senders;	};	template<class mt_policy>	class _signal_base0 : public _signal_base<mt_policy>	{	public:		typedef std::list<_connection_base0<mt_policy> *>  connections_list;		_signal_base0()		{			;		}		_signal_base0(const _signal_base0& s)			: _signal_base<mt_policy>(s)		{			lock_block<mt_policy> lock(this);			typename connections_list::const_iterator it = s.m_connected_slots.begin();			typename connections_list::const_iterator itEnd = s.m_connected_slots.end();			while(it != itEnd)			{				(*it)->getdest()->signal_connect(this);				m_connected_slots.push_back((*it)->clone());				++it;			}		}		~_signal_base0()		{			disconnect_all();		}		void disconnect_all()		{			lock_block<mt_policy> lock(this);			typename connections_list::const_iterator it = m_connected_slots.begin();

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成a人v欧美综合天堂下载| 国产成人综合自拍| 欧美一区二区福利视频| 国产做a爰片久久毛片| 一区二区中文视频| 欧美一级午夜免费电影| 91老师片黄在线观看| 久久精品久久99精品久久| 国产精品久久久久久久第一福利| 在线视频你懂得一区二区三区| 精品福利一区二区三区| 成人久久视频在线观看| 午夜久久久久久电影| 日韩欧美你懂的| 成人免费精品视频| 美女视频黄免费的久久| 国产精品全国免费观看高清| 欧美三级视频在线播放| 国产一区二区日韩精品| 香蕉成人啪国产精品视频综合网 | 免费观看91视频大全| 国产精品天干天干在观线| 在线精品国精品国产尤物884a| 麻豆精品久久久| 国产精品国模大尺度视频| 欧美大尺度电影在线| 精品国产一区二区精华| 3d成人h动漫网站入口| 9人人澡人人爽人人精品| 久久精品国产亚洲a| 日韩精品一级二级| 丝瓜av网站精品一区二区| 亚洲色大成网站www久久九九| 欧美精品一区二区三区四区| 欧美一区二区女人| 波多野洁衣一区| 色综合久久综合中文综合网| 国产成人精品亚洲777人妖| 久久综合综合久久综合| 一区二区三区在线播| 亚洲一区二区视频在线观看| 国产精品国产三级国产aⅴ入口 | 国内精品嫩模私拍在线| 国产在线国偷精品产拍免费yy| 紧缚奴在线一区二区三区| 一级精品视频在线观看宜春院| 精品国产污网站| 国产视频一区二区在线| 久久久精品蜜桃| 欧美大肚乱孕交hd孕妇| 日韩欧美国产wwwww| 91.麻豆视频| 色www精品视频在线观看| 538在线一区二区精品国产| 国产精品天干天干在线综合| 亚洲精选一二三| 亚洲电影你懂得| 成人三级伦理片| 在线电影欧美成精品| 国产精品成人一区二区艾草 | 一区二区三区日本| 日本成人中文字幕| 欧美日韩精品一区视频| 中文字幕永久在线不卡| 精品在线亚洲视频| 欧美日韩亚洲高清一区二区| 国产精品三级av在线播放| 久久成人av少妇免费| 欧美伊人久久久久久午夜久久久久| 国产日韩高清在线| 韩国成人精品a∨在线观看| 欧美亚洲自拍偷拍| 亚洲欧洲精品一区二区三区| 久久99精品一区二区三区| 91精品国产色综合久久久蜜香臀| 亚洲精品国产一区二区精华液 | 久久久国产精华| 免费观看30秒视频久久| 91精品国产综合久久精品麻豆| 亚洲成人动漫一区| 日韩视频国产视频| 五月婷婷久久丁香| www.av精品| 亚洲另类在线视频| 91精品国产欧美一区二区| 亚洲一区二区在线免费观看视频| 欧美日韩免费高清一区色橹橹 | 在线亚洲人成电影网站色www| 综合网在线视频| 67194成人在线观看| 日本强好片久久久久久aaa| 日韩欧美专区在线| 国产又黄又大久久| 91精品久久久久久久99蜜桃 | 国产午夜三级一区二区三| 久久99久国产精品黄毛片色诱| 欧美日韩三级在线| 国产成人免费视频网站 | 精品国产电影一区二区| 国产高清在线精品| 亚洲欧美另类小说| 日韩精品自拍偷拍| 播五月开心婷婷综合| 三级精品在线观看| 国产精品热久久久久夜色精品三区 | 亚洲午夜久久久久久久久久久| 久久久久久久久久久久久久久99| 成人免费福利片| 久久精品国产精品青草| 国产女人aaa级久久久级| 欧美三级在线看| 99国产精品一区| 高清久久久久久| 美腿丝袜在线亚洲一区| 欧美午夜免费电影| 在线区一区二视频| 偷拍日韩校园综合在线| 日韩欧美国产一区二区在线播放| 一本大道久久精品懂色aⅴ| 国内国产精品久久| 国模套图日韩精品一区二区| 丝袜亚洲精品中文字幕一区| 亚洲成人av一区二区三区| 国产女同性恋一区二区| 国产无遮挡一区二区三区毛片日本| 欧美色倩网站大全免费| 欧美精品1区2区3区| 91福利在线免费观看| 色婷婷综合五月| 91麻豆国产香蕉久久精品| 91免费国产视频网站| 99国产精品一区| 欧美在线看片a免费观看| 亚洲影视资源网| 夜夜亚洲天天久久| 亚洲综合av网| 亚洲精品久久7777| 日韩成人午夜电影| 亚洲18色成人| 国模大尺度一区二区三区| 美国毛片一区二区| 成人影视亚洲图片在线| 美女精品一区二区| 狠狠色丁香久久婷婷综合_中| 性欧美疯狂xxxxbbbb| 日韩电影在线一区| 国产成人免费高清| 成人av网站在线| 欧美日韩国产区一| 精品美女一区二区| 亚洲天堂免费看| 一区二区三区欧美| 奇米精品一区二区三区在线观看一| 日韩成人一级片| www.色综合.com| 日本乱人伦一区| 欧美一个色资源| 日韩免费在线观看| 欧美国产国产综合| 中文字幕日韩精品一区| 一区二区三区成人| 国产成人午夜高潮毛片| 99久久久国产精品| 精品国产乱码久久久久久图片| 精品粉嫩超白一线天av| 亚洲国产视频a| 蜜桃精品视频在线观看| 97精品超碰一区二区三区| 欧美日韩精品综合在线| 欧美激情在线看| 自拍偷在线精品自拍偷无码专区 | 波多野结衣中文字幕一区二区三区| 成人免费福利片| 欧美男同性恋视频网站| 国产精品久久久久一区二区三区 | 欧美日韩一区二区电影| 国产亚洲一区二区三区在线观看| 亚洲精品国产一区二区三区四区在线| 日韩一区欧美二区| 91麻豆福利精品推荐| 精品久久久久久无| 日韩综合一区二区| 99久久综合色| 国产免费久久精品| 日韩av电影免费观看高清完整版在线观看| bt7086福利一区国产| 日韩一区二区免费视频| 亚洲一区在线视频观看| 国产盗摄精品一区二区三区在线| 欧美精品自拍偷拍动漫精品| 国产精品久久久久久一区二区三区| 日日噜噜夜夜狠狠视频欧美人| av电影在线观看完整版一区二区| 久久久亚洲精品一区二区三区| 五月综合激情婷婷六月色窝| 99国产欧美另类久久久精品| 日韩欧美中文一区二区| 一区二区三区不卡在线观看| av福利精品导航| 国产亚洲精品7777|