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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? base_exception.cpp

?? 270的linux說明
?? CPP
?? 第 1 頁 / 共 2 頁
字號:
// GetDetailErrorInfo//==============================================================================const IntelMobileChar* IntelMobileException::GetDetailErrorInfo( const IntelMobileChar* ErrorCode ){	const IntelMobileChar* pszInfo = IntelMobileText("");//	gErrorCollection.Lock();	//gErrorMap.Lock();	if ( gExceptionInitlize == 0 )	{	/*	IntelMobileString sFile = g_sPropertyFileDirectory + g_sFileName;				USES_CONVERSION;		// basic_ifstream< TCHAR, char_traits<TCHAR> > infile( _com_util::ConvertBSTRToString((BSTR)(sFile.c_str())), ios::in );		basic_ifstream< TCHAR, char_traits<TCHAR> > infile( T2A(sFile.c_str()), ios::in );		if ( !infile )		{//			gErrorCollection.Unlock();			gErrorMap.Unlock();			return IntelMobileText("");		}					try {			TCHAR line[1000];			IntelMobileString aline;			while(infile._Ipfx())			{				infile.getline(line, 1000);				aline = line;				//infile >> line;				size_t pos = aline.find( IntelMobileText("=") );				if (pos == -1)					continue;				gErrorMap.insert( pair<IntelMobileString, IntelMobileString>( Trim(aline.substr(0, pos)), Trim(aline.substr(pos+1)) ) );//				gErrorCollection.push_back( pair<IntelMobileString, IntelMobileString>( Trim(aline.substr(0, pos)), Trim(aline.substr(pos+1)) ) );			}		}		catch(...)		{			infile.close();//			gErrorCollection.Unlock();			gErrorMap.Unlock();			return IntelMobileText("");		}		infile.close();*/		gExceptionInitlize = 1;	}			/*	if ( !gErrorMap.empty() )	{		ExceptionMap::iterator Iterator;				Iterator = gErrorMap.find( ErrorCode );		if (!(Iterator == gErrorMap.end()))		{			pszInfo = Iterator->second.c_str();		}	}	*//*	if ( gErrorCollection.size() > 0 )	{		ExceptionCollection::iterator itr;		for ( itr = gErrorCollection.begin(); itr < gErrorCollection.end(); ++itr )		{			if ( itr->first.compare(ErrorCode) == 0 ) 			{				pszInfo = itr->second.c_str();			}		}			}*/	//gErrorMap.Unlock();	// gErrorCollection.Unlock();	return pszInfo;}//==============================================================================// Trim()//==============================================================================IntelMobileString IntelMobileException::Trim(IntelMobileString src){	size_t size = src.size();//size_t i=0;	for (/*size_t i=0*/; i<size; i++)	{		if( src[i] != L' ' )			break;	}	size_t stpos = i;		size_t count = 0;	for (size_t i=size-1; i>stpos; i--)	{		if( src[i] != L' ' )			break;	}		count = i - stpos + 1;	return src.substr(stpos, count);}//==============================================================================// IML2W()//==============================================================================void IntelMobileException::IML2W(LONG lErrorCode, IntelMobileChar* code){//	TCHAR codearray[10];//	_ltow(lErrorCode, code, 16);//	code = codearray;}//==============================================================================// SetPropertyFileDirectory()//==============================================================================void IntelMobileException::SetPropertyFileDirectory(IntelMobileString& sPropertyFileDirectory){	g_sPropertyFileDirectory = sPropertyFileDirectory;}//==============================================================================// SetFileName()//==============================================================================void IntelMobileException::SetFileName(IntelMobileString& sFileName){	g_sFileName = sFileName;}//==============================================================================// GetErrorCode()//==============================================================================const IntelMobileChar* IntelMobileException::GetErrorCode() const{//    return const_cast<IntelMobileChar *>(m_sErrorCode.c_str());//	return m_sErrorCode.c_str();	return m_sErrorCode;} // GetErrorCode()//==============================================================================// GetMessage()//==============================================================================const IntelMobileChar* IntelMobileException::GetGeneralMessage() const{//    return m_sMessage.c_str();	return m_sMessage;} // GetMessage()//==============================================================================// GetSource()//==============================================================================const IntelMobileChar* IntelMobileException::GetSource() const{//    return m_sSource.c_str();	return m_sSource;} // GetSource()//==============================================================================// GetTargetSite()//==============================================================================const IntelMobileChar* IntelMobileException::GetTargetSite() const{//    return m_sTargetSite.c_str();	return m_sTargetSite;} // GetTargetSite()//==============================================================================// SetSource()//==============================================================================void IntelMobileException::SetSource( const IntelMobileChar* pszSource ){//    m_sSource = pszSource;	delete[] m_sSource;#ifdef _UNICODE    m_sSource = new IntelMobileChar[::wcslen(pszSource)+1];#else    m_sSource = new IntelMobileChar[::strlen(pszSource)+1];#endif    if ( m_sSource )    {#ifdef _UNICODE        ::wcscpy( m_sSource, pszSource ); #else        strcpy( m_sSource, pszSource ); #endif    }} // SetSource()//==============================================================================// SetSource()//==============================================================================void IntelMobileException::SetSource( const IntelMobileString& sSource ){//    m_sSource = sSource;	SetSource( sSource.c_str() );} // SetSource()//==============================================================================// SetTargetSite()//==============================================================================void IntelMobileException::SetTargetSite( const IntelMobileChar* pszSite ){//    m_sTargetSite = pszSite;	delete[] m_sTargetSite;#ifdef _UNICODE    m_sTargetSite = new IntelMobileChar[::wcslen(pszSite)+1];#else    m_sTargetSite = new IntelMobileChar[::strlen(pszSite)+1];#endif    if ( m_sTargetSite )    {#ifdef _UNICODE        ::wcscpy( m_sTargetSite, pszSite ); #else        strcpy( m_sTargetSite, pszSite ); #endif    }} // SetTargetSite()//==============================================================================// SetTargetSite()//==============================================================================void IntelMobileException::SetTargetSite( const IntelMobileString& sSite ){//    m_sTargetSite = sSite;	SetTargetSite( sSite.c_str() );} // SetTargetSite()//==============================================================================//==============================================================================// class  InvalidOperationException//==============================================================================// Default C-Tor()//==============================================================================InvalidOperationException::InvalidOperationException( const IntelMobileChar* pszSource,                                                      const IntelMobileChar* pszSite,													  const LONG lErrorCode )                         : IntelMobileException( IntelMobileText("Invalid Operation"),                                             pszSource, pszSite, lErrorCode ){}//==============================================================================// String C-Tor()//==============================================================================InvalidOperationException::InvalidOperationException( const IntelMobileString& sSource,                                                      const IntelMobileString& sSite )                         : IntelMobileException( IntelMobileText("Invalid Operation"),                                             sSource.c_str(),                                             sSite.c_str() ){}//==============================================================================// String C-Tor()//==============================================================================InvalidOperationException::InvalidOperationException( const IntelMobileString& sSource,                                                      const IntelMobileString& sSite,													  const LONG lErrorCode )                         : IntelMobileException( IntelMobileText("Invalid Operation"),                                             sSource.c_str(),                                             sSite.c_str(),											lErrorCode ){}//==============================================================================// D-Tor()//==============================================================================InvalidOperationException::~InvalidOperationException(){}//==============================================================================//==============================================================================// class  InvalidInterfaceException//==============================================================================// Default C-Tor()//==============================================================================InvalidInterfaceException::InvalidInterfaceException( const IntelMobileChar* pszSource,                                                      const IntelMobileChar* pszSite,													  const LONG lErrorCode )                         : IntelMobileException( IntelMobileText("Invalid Interface"),                                             pszSource, pszSite, lErrorCode){}//==============================================================================// String C-Tor()//==============================================================================InvalidInterfaceException::InvalidInterfaceException( const IntelMobileString& sSource,                                                      const IntelMobileString& sSite )                         : IntelMobileException( IntelMobileText("Invalid Interface"),                                             sSource.c_str(),                                             sSite.c_str() ){}//==============================================================================// String C-Tor()//==============================================================================InvalidInterfaceException::InvalidInterfaceException( const IntelMobileString& sSource,                                                      const IntelMobileString& sSite,													  const LONG lErrorCode )                         : IntelMobileException( IntelMobileText("Invalid Interface"),                                             sSource.c_str(),                                             sSite.c_str(),											lErrorCode ){}//==============================================================================//==============================================================================// D-Tor()//==============================================================================InvalidInterfaceException::~InvalidInterfaceException(){}//==============================================================================

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品69毛片高清亚洲| 一二三四区精品视频| 538在线一区二区精品国产| av一区二区三区| av资源站一区| 91在线观看地址| 色婷婷综合五月| 日本丰满少妇一区二区三区| 99久久综合99久久综合网站| 国产成人av自拍| 99久久伊人网影院| 色八戒一区二区三区| 在线一区二区三区四区| 777亚洲妇女| 亚洲精品一区二区三区99| 久久精品视频在线看| 国产精品国产自产拍高清av王其| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 久久爱www久久做| 国产尤物一区二区在线| 成人综合婷婷国产精品久久免费| 99精品黄色片免费大全| 欧美老肥妇做.爰bbww视频| 日韩欧美一区在线| 久久久久国产精品麻豆| 亚洲靠逼com| 日本少妇一区二区| 不卡的看片网站| 欧美日韩日日夜夜| 久久人人超碰精品| 亚洲视频在线一区| 日韩高清电影一区| 成人精品免费看| 777a∨成人精品桃花网| 国产女同互慰高潮91漫画| 玉足女爽爽91| 国产一区三区三区| 欧美在线观看一区二区| 久久婷婷色综合| 一区二区三区成人| 国产精品18久久久久| 欧美天堂一区二区三区| 欧美国产日韩一二三区| 日韩av电影天堂| 色偷偷成人一区二区三区91| 日韩欧美中文字幕制服| 亚洲日本丝袜连裤袜办公室| 久久精工是国产品牌吗| 在线观看中文字幕不卡| 国产女同性恋一区二区| 麻豆久久一区二区| 日本韩国一区二区| 国产精品日日摸夜夜摸av| 日本不卡视频在线| 欧美日韩一卡二卡| 中文字幕一区二区三区不卡 | 99久久精品国产麻豆演员表| 欧美一区二区三区的| 亚洲一二三区视频在线观看| 成人黄动漫网站免费app| 精品福利一区二区三区免费视频| 99免费精品视频| 国产精品小仙女| 亚洲一区二区美女| 国产日韩欧美一区二区三区综合| 久久综合给合久久狠狠狠97色69| 亚洲成人免费电影| 91成人看片片| 一区二区久久久| av亚洲产国偷v产偷v自拍| 久久久亚洲高清| 国产一区二区三区四区五区入口| 日韩欧美国产综合一区| 亚洲aⅴ怡春院| 欧美夫妻性生活| 午夜久久久久久| 8v天堂国产在线一区二区| 日韩精品免费视频人成| 欧美美女一区二区三区| 日本亚洲天堂网| 日韩精品一区二区三区四区| 精品亚洲aⅴ乱码一区二区三区| 欧美日韩在线播放一区| 天天综合网天天综合色| 欧美一区二区大片| 久久精品国产免费| 久久人人爽爽爽人久久久| 国产大陆a不卡| 中文字幕一区二区三区不卡 | 在线免费亚洲电影| 亚洲国产wwwccc36天堂| 7777精品伊人久久久大香线蕉| 日韩精品每日更新| 久久久.com| 色综合久久久久| 日韩精品一级中文字幕精品视频免费观看 | 丝袜亚洲另类丝袜在线| 欧美一级淫片007| 国产一区二区不卡老阿姨| 中文字幕国产精品一区二区| 播五月开心婷婷综合| 亚洲图片一区二区| 欧美mv日韩mv国产网站app| 成人综合在线观看| 亚洲福利国产精品| 国产亚洲一区二区三区四区| 色综合夜色一区| 日本aⅴ亚洲精品中文乱码| 久久久久久久久岛国免费| 色婷婷久久99综合精品jk白丝| 亚洲丶国产丶欧美一区二区三区| 精品国产在天天线2019| 99国产精品久久久久久久久久 | 91精品婷婷国产综合久久竹菊| 狠狠色丁香久久婷婷综合_中| 亚洲日本va在线观看| 日韩精品资源二区在线| 91免费观看在线| 久久成人羞羞网站| 一区二区欧美国产| 国产色综合一区| 91精品在线免费观看| 99精品国产热久久91蜜凸| 九一久久久久久| 亚洲va天堂va国产va久| 欧美激情在线观看视频免费| 欧美精品v国产精品v日韩精品 | 国产精品理论片| 日韩欧美一级二级三级| 色综合久久中文字幕| 国产精品白丝jk黑袜喷水| 日本亚洲免费观看| 亚洲一区二区三区四区在线观看| 国产性天天综合网| 精品国产一二三区| 在线播放国产精品二区一二区四区 | 香蕉久久一区二区不卡无毒影院| 国产精品女同互慰在线看| 精品久久国产老人久久综合| 欧美美女黄视频| 欧美日韩一区中文字幕| 色综合久久久久久久| av男人天堂一区| 丰满少妇在线播放bd日韩电影| 久久99国产精品麻豆| 久久精品72免费观看| 蜜桃一区二区三区在线观看| 日日夜夜免费精品视频| 午夜视频在线观看一区| 一级日本不卡的影视| 亚洲欧美国产高清| 成人欧美一区二区三区视频网页| 久久久久99精品国产片| 久久久久9999亚洲精品| 久久久.com| 国产精品亲子乱子伦xxxx裸| 久久久久久久综合狠狠综合| 久久综合九色综合97婷婷女人 | 91视频观看免费| 99re66热这里只有精品3直播| 成年人国产精品| 成人av在线网站| 色av成人天堂桃色av| 欧美综合久久久| 制服.丝袜.亚洲.中文.综合| 666欧美在线视频| 国产欧美一区二区在线观看| 久久女同性恋中文字幕| 国产精品美女久久久久久久| 亚洲免费视频成人| 亚洲成人动漫一区| 国内精品免费在线观看| 成人深夜在线观看| 日本精品一级二级| 日韩女优av电影在线观看| 国产亚洲短视频| 亚洲最大的成人av| 蜜臀久久久久久久| 豆国产96在线|亚洲| 欧美综合天天夜夜久久| 精品国产sm最大网站| 国产精品久久久久久户外露出 | 国产成人aaa| 91视频国产观看| 日韩欧美国产一二三区| 国产精品久久久久久久第一福利| 亚洲国产成人av好男人在线观看| 狠狠色狠狠色合久久伊人| 91猫先生在线| 欧美成人女星排名| 亚洲日本一区二区三区| 久久精品噜噜噜成人88aⅴ| 99精品偷自拍| 日韩三级.com| 亚洲精选在线视频| 国产精品 欧美精品| 欧美丰满嫩嫩电影| 亚洲少妇屁股交4| 国产又黄又大久久| 欧美精品1区2区3区|