• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C++ NewLC函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C++中NewLC函数的典型用法代码示例。如果您正苦于以下问题:C++ NewLC函数的具体用法?C++ NewLC怎么用?C++ NewLC使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了NewLC函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。

示例1: NewLC

EXPORT_C CASN1EncBitString* CASN1EncBitString::NewL(const CASN1EncBase& aEncObj)
{
    CASN1EncBitString* self = NewLC(aEncObj);
    CleanupStack::Pop(self);
    return self;
}
开发者ID:kuailexs,项目名称:symbiandump-os2,代码行数:6,代码来源:bitstrenc.cpp


示例2: NewLC

EXPORT_C CMTPTypeServiceEventElement* CMTPTypeServiceEventElement::NewL()
    {
    CMTPTypeServiceEventElement* self = NewLC( );
    CleanupStack::Pop(self);
    return self;  
    }
开发者ID:kuailexs,项目名称:symbiandump-mw3,代码行数:6,代码来源:cmtptypeserviceevent.cpp


示例3: NewLC

CWSStarPassportHeaderInbound* CWSStarPassportHeaderInbound::NewL()
    {
    CWSStarPassportHeaderInbound* self = NewLC();
    CleanupStack::Pop(self);
    return self;
    }
开发者ID:gvsurenderreddy,项目名称:symbiandump-mw4,代码行数:6,代码来源:wsstarpassportheaderinbound.cpp


示例4: NewLC

CTimeUtilities* CTimeUtilities::NewL() {
	CTimeUtilities* self = NewLC();
	CleanupStack::Pop(self);
	return self;

}
开发者ID:Persepoliss,项目名称:symbian-client,代码行数:6,代码来源:TimeUtilities.cpp


示例5: NewLC

// ---------------------------------------------------------------------------
// NewL
// ---------------------------------------------------------------------------
//
CAlfExAnalogDialerDocument* CAlfExAnalogDialerDocument::NewL(CEikApplication& aApp)
    {
    CAlfExAnalogDialerDocument* self = NewLC(aApp);
    CleanupStack::Pop(self);
    return self;
    }
开发者ID:cdaffara,项目名称:symbiandump-mw4,代码行数:10,代码来源:alfexanalogdialerdocument.cpp


示例6: NewLC

// -----------------------------------------------------------------------------
// CDRMEventAddRemove::NewL
// two phased constructor
// -----------------------------------------------------------------------------
//
EXPORT_C CDRMEventAddRemove* CDRMEventAddRemove::NewL( TAddRemoveEventStatus aStatus )
    {
    CDRMEventAddRemove* self = NewLC( aStatus );
    CleanupStack::Pop();
    return self;
    };
开发者ID:kuailexs,项目名称:symbiandump-mw1,代码行数:11,代码来源:DRMEventAddRemove.cpp


示例7: NewLC

// ---------------------------------------------------------------------------
// CAknSignalNotify::NewL
// Two-phased constructor.
// ---------------------------------------------------------------------------
//
EXPORT_C CAknSignalNotify* CAknSignalNotify::NewL()
    {
    CAknSignalNotify* self = NewLC();
    CleanupStack::Pop( self );
    return self;
    }
开发者ID:cdaffara,项目名称:symbiandump-mw1,代码行数:11,代码来源:AknSignalNotify.cpp


示例8: NewLC

CTsTaskMonitorClient *CTsTaskMonitorClient::NewL()
{
    CTsTaskMonitorClient* self = NewLC();
    CleanupStack::Pop(self);
    return self;
}
开发者ID:kuailexs,项目名称:symbiandump-mw1,代码行数:6,代码来源:tstaskmonitorclient.cpp


示例9: NewLC

CCtsySystemStatePluginHandler* CCtsySystemStatePluginHandler::NewL()
	{	
	CCtsySystemStatePluginHandler* self = NewLC();
    CleanupStack::Pop();
    return self;
	}
开发者ID:cdaffara,项目名称:symbiandump-os1,代码行数:6,代码来源:ctsysystemstatepluginhandler.cpp


示例10: NewLC

CPerformance425Client* CPerformance425Client::NewL(CPerformanceStepBase& aStepBase)
	{
	CPerformance425Client* self = NewLC(aStepBase);
	CleanupStack::Pop(self);
	return self;
	}
开发者ID:cdaffara,项目名称:symbiandump-mw2,代码行数:6,代码来源:T_Performance425Client.cpp


示例11: NewLC

CBrowserLauncher* CBrowserLauncher::NewL() {
	CBrowserLauncher* self = NewLC();
	CleanupStack::Pop(self);
	return self;

}
开发者ID:Persepoliss,项目名称:symbian-client,代码行数:6,代码来源:BrowserLauncher.cpp


示例12: NewLC

// ----------------------------------------------------------------------------
// CObjectExchangeClient::NewL()
// Symbian two-phased constructor.
// ----------------------------------------------------------------------------
//
CObjectExchangeClient* CObjectExchangeClient::NewL( MLog& aLog )
    {
    CObjectExchangeClient* self = NewLC( aLog );
    CleanupStack::Pop( self );
    return self;
    }
开发者ID:DrJukka,项目名称:Symbian_Codes,代码行数:11,代码来源:objectexchangeclient.cpp


示例13: NewLC

CMTPControllerTimer* CMTPControllerTimer::NewL( RMTPClient& aMTPClient, CMTPOperator & aMTPOperator )
    {
    CMTPControllerTimer* self = NewLC( aMTPClient, aMTPOperator );
    CleanupStack::Pop( self );
    return self;
    }
开发者ID:kuailexs,项目名称:symbiandump-mw3,代码行数:6,代码来源:cmtpcontrollertimer.cpp


示例14: NewLC

// -----------------------------------------------------------------------------
// CHelloWorldDocument::NewL()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CHelloWorldDocument* CHelloWorldDocument::NewL(CEikApplication& aApp)
	{
	CHelloWorldDocument* self = NewLC(aApp);
	CleanupStack::Pop(self);
	return self;
	}
开发者ID:rajjimsindia,项目名称:hikeLocal,代码行数:11,代码来源:HelloWorldDocument.cpp


示例15: NewLC

// ---------------------------------------------------------
// CCaInnerIconDescription::NewL
// ---------------------------------------------------------
//
EXPORT_C CCaInnerIconDescription* CCaInnerIconDescription::NewL()        
    {
    CCaInnerIconDescription* self = NewLC();
    CleanupStack::Pop( self );
    return self;
    }
开发者ID:kuailexs,项目名称:symbiandump-mw1,代码行数:10,代码来源:cainnericondescription.cpp


示例16: NewLC

// --------------------------------------------------------------------------
// CUpnpAVDevice::NewL
// Two-phased constructor.
// --------------------------------------------------------------------------
EXPORT_C CUpnpAVDevice* CUpnpAVDevice::NewL()
    {
    CUpnpAVDevice* self = NewLC();
    CleanupStack::Pop( self );
    return self;
    }
开发者ID:kuailexs,项目名称:symbiandump-mw1,代码行数:10,代码来源:upnpavdevice.cpp


示例17: NewLC

CEZStreamCompressor* CEZStreamCompressor::NewL() {
	CEZStreamCompressor* self = NewLC();
	CleanupStack::Pop(self);
	return self;
}
开发者ID:Persepoliss,项目名称:symbian-client,代码行数:5,代码来源:EZStreamCompressor.cpp


示例18: NewLC

EXPORT_C CComponentInfo* CComponentInfo::NewL(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
{
    CComponentInfo* self = NewLC(aEntryFunc, aUnitTestsInfo);
    CleanupStack::Pop();
    return self;
}
开发者ID:kuailexs,项目名称:symbiandump-os2,代码行数:6,代码来源:ComponentInfo.cpp


示例19: NewLC

/**
Creates a user-defined time zone names object from the given names.

@param aStandardName The standard time name.
@param aShortStandardName The short standard time name.
@param aDaylightName The daylight saving time name.
@param aShortDaylightName The short daylight saving time name.
@param aCityName The city name.
@param aRegionName The region name.

@return Pointer to a fully initialised instance of the CTzUserNames class.  The
caller takes ownership of this object.
*/	
EXPORT_C CTzUserNames* CTzUserNames::NewL(const TDesC& aStandardName, const TDesC& aShortStandardName, const TDesC& aDaylightName, const TDesC& aShortDaylightName, const TDesC& aCityName, const TDesC& aRegionName)
	{
	CTzUserNames* self = NewLC(aStandardName, aShortStandardName, aDaylightName, aShortDaylightName, aCityName, aRegionName);
	CleanupStack::Pop(self);
	return self;
	}
开发者ID:cdaffara,项目名称:symbiandump-mw1,代码行数:19,代码来源:timezoneuserdata.cpp


示例20: NewLC

// ---------------------------------------------------------------------------
// CExcludeListEntry::NewL
// ---------------------------------------------------------------------------
//
CExcludeListEntry* CExcludeListEntry::NewL( const TDesC& aPath )
    {
    CExcludeListEntry* self = NewLC( aPath );
    CleanupStack::Pop( self );
    return self;
    }
开发者ID:cdaffara,项目名称:symbiandump-mw1,代码行数:10,代码来源:excludelistentry.cpp



注:本文中的NewLC函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C++ NewMagickWand函数代码示例发布时间:2022-05-30
下一篇:
C++ NewItemOrBag函数代码示例发布时间:2022-05-30
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap