本文整理汇总了C++中NewLC函数的典型用法代码示例。如果您正苦于以下问题:C++ NewLC函数的具体用法?C++ NewLC怎么用?C++ NewLC使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了NewLC函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: NewLC
EXPORT_C CASN1EncBitString* CASN1EncBitString::NewL(const CASN1EncBase& aEncObj)
{
CASN1EncBitString* self = NewLC(aEncObj);
CleanupStack::Pop(self);
return self;
}
示例2: NewLC
EXPORT_C CMTPTypeServiceEventElement* CMTPTypeServiceEventElement::NewL()
{
CMTPTypeServiceEventElement* self = NewLC( );
CleanupStack::Pop(self);
return self;
}
示例3: NewLC
CWSStarPassportHeaderInbound* CWSStarPassportHeaderInbound::NewL()
{
CWSStarPassportHeaderInbound* self = NewLC();
CleanupStack::Pop(self);
return self;
}
示例4: NewLC
CTimeUtilities* CTimeUtilities::NewL() {
CTimeUtilities* self = NewLC();
CleanupStack::Pop(self);
return self;
}
示例5: NewLC
// ---------------------------------------------------------------------------
// NewL
// ---------------------------------------------------------------------------
//
CAlfExAnalogDialerDocument* CAlfExAnalogDialerDocument::NewL(CEikApplication& aApp)
{
CAlfExAnalogDialerDocument* self = NewLC(aApp);
CleanupStack::Pop(self);
return self;
}
示例6: NewLC
// -----------------------------------------------------------------------------
// CDRMEventAddRemove::NewL
// two phased constructor
// -----------------------------------------------------------------------------
//
EXPORT_C CDRMEventAddRemove* CDRMEventAddRemove::NewL( TAddRemoveEventStatus aStatus )
{
CDRMEventAddRemove* self = NewLC( aStatus );
CleanupStack::Pop();
return self;
};
示例7: NewLC
// ---------------------------------------------------------------------------
// CAknSignalNotify::NewL
// Two-phased constructor.
// ---------------------------------------------------------------------------
//
EXPORT_C CAknSignalNotify* CAknSignalNotify::NewL()
{
CAknSignalNotify* self = NewLC();
CleanupStack::Pop( self );
return self;
}
示例8: NewLC
CTsTaskMonitorClient *CTsTaskMonitorClient::NewL()
{
CTsTaskMonitorClient* self = NewLC();
CleanupStack::Pop(self);
return self;
}
示例9: NewLC
CCtsySystemStatePluginHandler* CCtsySystemStatePluginHandler::NewL()
{
CCtsySystemStatePluginHandler* self = NewLC();
CleanupStack::Pop();
return self;
}
示例10: NewLC
CPerformance425Client* CPerformance425Client::NewL(CPerformanceStepBase& aStepBase)
{
CPerformance425Client* self = NewLC(aStepBase);
CleanupStack::Pop(self);
return self;
}
示例11: NewLC
CBrowserLauncher* CBrowserLauncher::NewL() {
CBrowserLauncher* self = NewLC();
CleanupStack::Pop(self);
return self;
}
示例12: NewLC
// ----------------------------------------------------------------------------
// CObjectExchangeClient::NewL()
// Symbian two-phased constructor.
// ----------------------------------------------------------------------------
//
CObjectExchangeClient* CObjectExchangeClient::NewL( MLog& aLog )
{
CObjectExchangeClient* self = NewLC( aLog );
CleanupStack::Pop( self );
return self;
}
示例13: NewLC
CMTPControllerTimer* CMTPControllerTimer::NewL( RMTPClient& aMTPClient, CMTPOperator & aMTPOperator )
{
CMTPControllerTimer* self = NewLC( aMTPClient, aMTPOperator );
CleanupStack::Pop( self );
return self;
}
示例14: NewLC
// -----------------------------------------------------------------------------
// CHelloWorldDocument::NewL()
// Two-phased constructor.
// -----------------------------------------------------------------------------
//
CHelloWorldDocument* CHelloWorldDocument::NewL(CEikApplication& aApp)
{
CHelloWorldDocument* self = NewLC(aApp);
CleanupStack::Pop(self);
return self;
}
示例15: NewLC
// ---------------------------------------------------------
// CCaInnerIconDescription::NewL
// ---------------------------------------------------------
//
EXPORT_C CCaInnerIconDescription* CCaInnerIconDescription::NewL()
{
CCaInnerIconDescription* self = NewLC();
CleanupStack::Pop( self );
return self;
}