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

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

?? base_exception.cpp

?? 270的linux說(shuō)明
?? CPP
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/*

Copyright (c) 2008, Intel Corporation. 

All rights reserved.

 

Redistribution and use in source and binary forms, with or without modification, 
are permitted provided that the following conditions are met:


    * Redistributions of source code must retain the above copyright notice, 
this list of conditions and the following disclaimer.

    * Redistributions in binary form must reproduce the above copyright notice, 
this list of conditions and the following disclaimer in the documentation and/or 
other materials provided with the distribution.

    * Neither the name of Intel Corporation nor the names of its contributors 
may be used to endorse or promote products derived from this software without 
specific prior written permission.

 

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
OF SUCH DAMAGE.

*///==============================================================================// base_Exception.cpp : Implementation of base class  IntelMobileException//==============================================================================#include "base_Exception.h"      #include <iostream>#include <fstream>using namespace Intel::Mobile::BaseAPI;//extern ExceptionMap gErrorMap;//ExceptionCollection gErrorCollection;extern int gExceptionInitlize = 0;IntelMobileString g_sPropertyFileDirectory = IntelMobileText("");IntelMobileString g_sFileName = IntelMobileText("IntelMobileErrorInfo.property");//==============================================================================// Default C-Tor()//==============================================================================/*IntelMobileException::IntelMobileException( const IntelMobileChar* pszMsg,                                  const IntelMobileChar* pszSource,                                  const IntelMobileChar* pszSite )               : m_sMessage    ( pszMsg    ),                 m_sSource     ( pszSource ),                 m_sTargetSite ( pszSite   ),				 m_sErrorCode  ( IntelMobileText("0")      ){}*///==============================================================================// Default C-Tor()//==============================================================================IntelMobileException::IntelMobileException( const IntelMobileChar* pszMsg,                                  const IntelMobileChar* pszSource,                                  const IntelMobileChar* pszSite,								  const LONG lErrorCode)               : m_sMessage    ( NULL    ),                 m_sSource     ( NULL ),                 m_sTargetSite ( NULL ),				 m_sErrorCode  ( NULL ),				 m_sErrorInfo  ( NULL ){	if ( pszMsg )    {#ifdef _UNICODE        m_sMessage = ::wcscpy( new IntelMobileChar[::wcslen(pszMsg)+1], pszMsg ); #else	m_sMessage = strcpy( new IntelMobileChar[::strlen(pszMsg)+1], pszMsg );#endif    }	else	{#ifdef _UNICODE		m_sMessage = ::wcscpy( new IntelMobileChar[1], IntelMobileText("") ); #else		m_sMessage = strcpy( new IntelMobileChar[1], IntelMobileText("") );#endif	}	if ( pszSource )    {#ifdef _UNICODE        m_sSource = ::wcscpy( new IntelMobileChar[::wcslen(pszSource)+1], pszSource ); #else	m_sSource = strcpy( new IntelMobileChar[::strlen(pszSource)+1], pszSource );#endif    }	else	{#ifdef _UNICODE		m_sSource = ::wcscpy( new IntelMobileChar[1], IntelMobileText("") ); #else		m_sSource = strcpy( new IntelMobileChar[1], IntelMobileText("") );#endif	}	if ( pszSite )    {#ifdef _UNICODE        m_sTargetSite = ::wcscpy( new IntelMobileChar[::wcslen(pszSite)+1], pszSite ); #else	m_sTargetSite = strcpy( new IntelMobileChar[::strlen(pszSite)+1], pszSite );#endif    }	else	{#ifdef _UNICODE		m_sTargetSite = ::wcscpy( new IntelMobileChar[1], IntelMobileText("") ); #else		m_sTargetSite = strcpy( new IntelMobileChar[1], IntelMobileText("") );#endif	}		m_sErrorCode = new IntelMobileChar[10];	IML2W( lErrorCode, m_sErrorCode );	Initialize();}//==============================================================================// String C-Tor()//==============================================================================IntelMobileException::IntelMobileException( const IntelMobileString& sMsg,                                  const IntelMobileString& sSource,                                  const IntelMobileString& sSite )               : m_sMessage    ( NULL    ),                 m_sSource     ( NULL ),                 m_sTargetSite ( NULL   ),				 m_sErrorInfo  ( NULL ),				 m_sErrorCode  ( IntelMobileText("0")){#ifdef _UNICODE    m_sMessage = ::wcscpy( new IntelMobileChar[::wcslen(sMsg.c_str())+1], sMsg.c_str() );     m_sSource = ::wcscpy( new IntelMobileChar[::wcslen(sSource.c_str())+1], sSource.c_str() );     m_sTargetSite = ::wcscpy( new IntelMobileChar[::wcslen(sSite.c_str())+1], sSite.c_str() ); #else	m_sMessage = strcpy( new IntelMobileChar[strlen(sMsg.c_str())+1], sMsg.c_str() );    m_sSource = strcpy( new IntelMobileChar[strlen(sSource.c_str())+1], sSource.c_str() );    m_sTargetSite = strcpy( new IntelMobileChar[strlen(sSite.c_str())+1], sSite.c_str() );#endif	Initialize();}//==============================================================================// String C-Tor()//==============================================================================IntelMobileException::IntelMobileException( const IntelMobileString& sMsg,                                  const IntelMobileString& sSource,                                  const IntelMobileString& sSite,								  const LONG lErrorCode)               : m_sMessage    ( NULL    ),                 m_sSource     ( NULL ),                 m_sTargetSite ( NULL ),				 m_sErrorCode  ( NULL ),				 m_sErrorInfo  ( NULL ){#ifdef _UNICODE	m_sMessage = ::wcscpy( new IntelMobileChar[::wcslen(sMsg.c_str())+1], sMsg.c_str() );     m_sSource = ::wcscpy( new IntelMobileChar[::wcslen(sSource.c_str())+1], sSource.c_str() );     m_sTargetSite = ::wcscpy( new IntelMobileChar[::wcslen(sSite.c_str())+1], sSite.c_str() ); #else	m_sMessage = strcpy( new IntelMobileChar[strlen(sMsg.c_str())+1], sMsg.c_str() );    m_sSource = strcpy( new IntelMobileChar[strlen(sSource.c_str())+1], sSource.c_str() );    m_sTargetSite = strcpy( new IntelMobileChar[strlen(sSite.c_str())+1], sSite.c_str() );#endif	m_sErrorCode = new IntelMobileChar[10];	IML2W( lErrorCode, m_sErrorCode );	Initialize();}//==============================================================================// Copy C-Tor()//==============================================================================IntelMobileException::IntelMobileException( const IntelMobileException& exception )               : m_sMessage    ( NULL ),                 m_sSource     ( NULL ),                 m_sTargetSite ( NULL ),				 m_sErrorCode  ( NULL ),				 m_sErrorInfo  ( NULL ){//	Initialize();	if ( exception.m_sMessage )	{#ifdef _UNICODE		m_sMessage = ::wcscpy( new IntelMobileChar[::wcslen(exception.m_sMessage)+1], exception.m_sMessage ); #else		m_sMessage = strcpy( new IntelMobileChar[strlen(exception.m_sMessage)+1], exception.m_sMessage ); #endif	}	else	{#ifdef _UNICODE		m_sMessage = ::wcscpy( new IntelMobileChar[1], IntelMobileText("")); #else		m_sMessage = strcpy( new IntelMobileChar[1], IntelMobileText("")); #endif	}		if ( exception.m_sSource )	{#ifdef _UNICODE		m_sSource = ::wcscpy( new IntelMobileChar[::wcslen(exception.m_sSource)+1], exception.m_sSource );#else		m_sSource = strcpy( new IntelMobileChar[::strlen(exception.m_sSource)+1], exception.m_sSource );#endif	}	else	{#ifdef _UNICODE		m_sSource = ::wcscpy( new IntelMobileChar[1], IntelMobileText("") ); #else		m_sSource = ::strcpy( new IntelMobileChar[1], IntelMobileText("") ); #endif	}	if ( exception.m_sTargetSite )	{#ifdef _UNICODE		m_sTargetSite = ::wcscpy( new IntelMobileChar[::wcslen(exception.m_sTargetSite)+1], exception.m_sTargetSite ); #else		m_sTargetSite = strcpy( new IntelMobileChar[strlen(exception.m_sTargetSite)+1], exception.m_sTargetSite ); #endif	}	else	{#ifdef _UNICODE		m_sTargetSite = ::wcscpy( new IntelMobileChar[1], IntelMobileText("") );#else		m_sTargetSite = strcpy( new IntelMobileChar[1], IntelMobileText("") );#endif	}	if ( exception.m_sErrorCode )	{#ifdef _UNICODE		m_sErrorCode = ::wcscpy( new IntelMobileChar[::wcslen(exception.m_sErrorCode)+1], exception.m_sErrorCode ); #else		m_sErrorCode = strcpy( new IntelMobileChar[strlen(exception.m_sErrorCode)+1], exception.m_sErrorCode ); #endif	}	else	{#ifdef _UNICODE		m_sErrorCode = ::wcscpy( new IntelMobileChar[1], IntelMobileText("") );#else		m_sErrorCode = strcpy( new IntelMobileChar[1], IntelMobileText("") );#endif	}	if ( exception.m_sErrorInfo )	{#ifdef _UNICODE		m_sErrorInfo = ::wcscpy( new IntelMobileChar[::wcslen(exception.m_sErrorInfo)+1], exception.m_sErrorInfo ); #else		m_sErrorInfo = strcpy( new IntelMobileChar[strlen(exception.m_sErrorInfo)+1], exception.m_sErrorInfo ); #endif	}	else	{#ifdef _UNICODE		m_sErrorInfo = ::wcscpy( new IntelMobileChar[1], IntelMobileText("") );#else		m_sErrorInfo = strcpy( new IntelMobileChar[1], IntelMobileText("") );#endif	}}//==============================================================================// D-Tor()//==============================================================================IntelMobileException::~IntelMobileException(){	if ( m_sMessage )		delete[] m_sMessage;	if ( m_sSource )		delete[] m_sSource;	if ( m_sTargetSite )		delete[] m_sTargetSite;	if ( m_sErrorCode )		delete[] m_sErrorCode;	if ( m_sErrorInfo )		delete[] m_sErrorInfo;}//==============================================================================// Initialize()//==============================================================================void IntelMobileException::Initialize(){	const IntelMobileChar* errorInfo = IntelMobileException::GetDetailErrorInfo( m_sErrorCode );	if ( m_sErrorInfo )		delete[] m_sErrorInfo;#ifdef _UNICODE    m_sErrorInfo = new IntelMobileChar[::wcslen(errorInfo)+1];#else    m_sErrorInfo = new IntelMobileChar[::strlen(errorInfo)+1];#endif    if ( m_sErrorInfo )    {#ifdef _UNICODE        ::wcscpy( m_sErrorInfo, errorInfo ); #else        strcpy( m_sErrorInfo, errorInfo ); #endif    }//	m_sErrorInfo = IntelMobileException::GetDetailErrorInfo( m_sErrorCode.c_str() ) ;}//==============================================================================// GetErrorInfo()//==============================================================================const IntelMobileChar* IntelMobileException::GetDetailErrorInfo() const{//	return const_cast<IntelMobileChar *>(m_sErrorInfo.c_str());//	return m_sErrorInfo.c_str();	return m_sErrorInfo;}//==============================================================================

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品18久久久久久久网站| av午夜精品一区二区三区| 欧美极品另类videosde| 日本高清无吗v一区| 国产一区二区美女| 亚洲一区二区在线免费观看视频| 久久久久久电影| 欧美另类变人与禽xxxxx| 成人免费视频免费观看| 久久精品国产秦先生| 亚洲精品精品亚洲| 日本一区二区综合亚洲| 欧美一区二区成人6969| 欧美在线高清视频| fc2成人免费人成在线观看播放 | 91视频www| 国产老肥熟一区二区三区| 日本强好片久久久久久aaa| 一区二区三区在线看| 国产精品青草综合久久久久99| 日韩欧美一级二级三级| 欧美精品在线视频| 91高清视频在线| 91视视频在线观看入口直接观看www| 国产精品99久久不卡二区| 麻豆久久久久久| 日本人妖一区二区| 日日夜夜精品视频免费| 亚洲国产视频一区| 亚洲一区二区3| 亚洲特黄一级片| 日韩伦理av电影| 综合亚洲深深色噜噜狠狠网站| 亚洲国产精品黑人久久久| 国产亚洲精品bt天堂精选| xvideos.蜜桃一区二区| 久久人人超碰精品| 久久久综合网站| 久久午夜色播影院免费高清| 久久久久久久国产精品影院| 久久久精品tv| 国产精品麻豆视频| 国产精品激情偷乱一区二区∴| 国产欧美日韩不卡免费| 国产精品系列在线| 中文字幕日本不卡| 亚洲欧美日本在线| 一区二区三区在线免费| 亚洲国产欧美在线人成| 亚洲chinese男男1069| 五月天激情小说综合| 日韩av高清在线观看| 精品一区二区三区久久| 国产麻豆精品在线观看| 成人免费视频视频在线观看免费| 91小宝寻花一区二区三区| 一本色道久久综合亚洲精品按摩| 在线观看免费视频综合| 制服丝袜国产精品| 精品盗摄一区二区三区| 欧美国产精品专区| 亚洲精品高清视频在线观看| 亚洲成人www| 久久99久久久欧美国产| 成人一二三区视频| 在线观看成人免费视频| 日韩一区和二区| 国产欧美一区二区三区在线看蜜臀 | 日韩午夜在线播放| 久久久亚洲综合| 亚洲视频在线观看一区| 香港成人在线视频| 激情六月婷婷综合| 99re这里都是精品| 欧美疯狂性受xxxxx喷水图片| 精品国产污污免费网站入口| 中文字幕一区二区不卡| 日韩不卡手机在线v区| 国产成人午夜精品5599| 欧美综合一区二区| 久久久久久影视| 亚洲伊人色欲综合网| 黄一区二区三区| 91福利视频网站| 久久久久国产精品厨房| 亚洲午夜电影在线| 国产91精品露脸国语对白| 欧美性感一类影片在线播放| 久久精品欧美日韩| 亚洲线精品一区二区三区 | 麻豆成人在线观看| 99精品视频在线观看| 欧美大度的电影原声| 亚洲欧美在线视频观看| 蜜桃视频在线一区| 一道本成人在线| 久久综合五月天婷婷伊人| 亚洲午夜一区二区| 成人激情综合网站| 精品国产一区二区三区久久影院 | 中文字幕欧美激情| 蜜臀av性久久久久av蜜臀妖精 | 日韩欧美国产一区二区三区| 亚洲精品视频一区二区| 国产盗摄精品一区二区三区在线| 欧美美女网站色| 亚洲色图19p| 成人性生交大合| 欧美电影免费观看完整版| 亚洲777理论| 在线视频一区二区三区| 国产精品乱码一区二区三区软件| 久久精品99国产精品日本| 欧美三区在线视频| 亚洲欧美日韩国产中文在线| 国产高清无密码一区二区三区| 日韩欧美成人一区二区| 午夜视频一区二区三区| 色综合天天综合网国产成人综合天 | 欧美午夜影院一区| 亚洲区小说区图片区qvod| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 日韩高清在线电影| 91官网在线观看| 亚洲男人的天堂av| 99久久国产综合精品女不卡| 国产欧美日韩综合精品一区二区| 久草在线在线精品观看| 日韩一区二区视频| 美女视频黄a大片欧美| 欧美日韩中文国产| 亚洲福利视频导航| 欧美视频完全免费看| 亚洲精品中文字幕在线观看| 91免费看片在线观看| 亚洲男同1069视频| 91黄色免费观看| 亚洲丶国产丶欧美一区二区三区| 欧美综合一区二区| 午夜国产不卡在线观看视频| 欧美日韩精品一区视频| 天堂在线亚洲视频| 欧美一卡二卡三卡| 精油按摩中文字幕久久| 337p粉嫩大胆噜噜噜噜噜91av| 国内精品伊人久久久久av一坑| 久久影院电视剧免费观看| 国产精品一区二区在线观看不卡 | 中文字幕巨乱亚洲| 99国产精品一区| 一级特黄大欧美久久久| 欧美日韩久久久| 蜜臀av国产精品久久久久| 久久综合色婷婷| gogogo免费视频观看亚洲一| 夜夜嗨av一区二区三区中文字幕| 欧美日韩精品欧美日韩精品一| 日本欧美一区二区在线观看| 精品国精品国产| 不卡一区在线观看| 一片黄亚洲嫩模| 日韩三级中文字幕| 成人午夜av电影| 一二三区精品福利视频| 欧美一区二区三区视频在线观看| 寂寞少妇一区二区三区| 国产精品美女久久久久av爽李琼 | 中文字幕一区二区不卡| 欧美日韩国产小视频在线观看| 麻豆精品精品国产自在97香蕉| 国产日韩av一区| 欧美在线观看视频在线| 久久99国内精品| 亚洲日本乱码在线观看| 欧美一区二区三区公司| 成人性生交大片免费| 午夜精品福利在线| 久久精品亚洲乱码伦伦中文| 欧美在线观看视频一区二区| 国产做a爰片久久毛片| 亚洲精品视频在线看| 精品sm捆绑视频| 欧美性生交片4| 国产福利精品一区二区| 亚洲五码中文字幕| 国产亚洲美州欧州综合国| 欧美视频自拍偷拍| 国产成人高清视频| 天堂午夜影视日韩欧美一区二区| 国产欧美日韩综合| 91精品欧美福利在线观看| 本田岬高潮一区二区三区| 免费人成精品欧美精品 | 国产精品久久久久三级| 日韩午夜在线影院| 色综合久久天天| 国产黄色成人av| 麻豆久久一区二区| 亚洲 欧美综合在线网络| 国产精品久久久久久一区二区三区 |