📄 smscryptosymbiancppuidocument.cpp
字号:
/*
* ============================================================================
* Name : SMSCryptoSymbianCppUIDocument.cpp
* Part of : Open C SMS Crypto Example
* Created : 05/25/2007 by Forum Nokia
* Version : 1.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#include "SMSCryptoSymbianCppUIDocument.h"
#include "SMSCryptoSymbianCppUIAppUi.h"
/**
* @brief Constructs the document class for the application.
* @param anApplication the application instance
*/
CSMSCryptoSymbianCppUIDocument::CSMSCryptoSymbianCppUIDocument( CEikApplication& anApplication )
: CAknDocument( anApplication )
{
}
/**
* @brief Completes the second phase of Symbian object construction.
* Put initialization code that could leave here.
*/
void CSMSCryptoSymbianCppUIDocument::ConstructL()
{
}
/**
* Symbian OS two-phase constructor.
*
* Creates an instance of CSMSCryptoSymbianCppUIDocument, constructs it, and
* returns it.
*
* @param aApp the application instance
* @return the new CSMSCryptoSymbianCppUIDocument
*/
CSMSCryptoSymbianCppUIDocument* CSMSCryptoSymbianCppUIDocument::NewL( CEikApplication& aApp )
{
CSMSCryptoSymbianCppUIDocument* self = new ( ELeave ) CSMSCryptoSymbianCppUIDocument( aApp );
CleanupStack::PushL( self );
self->ConstructL();
CleanupStack::Pop( self );
return self;
}
/**
* @brief Creates the application UI object for this document.
* @return the new instance
*/
CEikAppUi* CSMSCryptoSymbianCppUIDocument::CreateAppUiL()
{
return new ( ELeave ) CSMSCryptoSymbianCppUIAppUi;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -