📄 gifanimationapp.cpp
字号:
/* ============================================================================
* Name : CGifAnimationApp from GifAnimationApp.cpp
* Part of : GifAnimation
* Created : 31.01.2006 by ToBeReplacedByAuthor
*
* Implementation notes:
*
* Initial content was generated by Series 60 Application Wizard.
* Version :
* Copyright: ToBeReplacedByCopyright
* ============================================================================
*/
// INCLUDE FILES
#include "GifAnimationApp.h"
#include "GifAnimationDocument.h"
// ================= MEMBER FUNCTIONS =======================
// ---------------------------------------------------------
// CGifAnimationApp::AppDllUid()
// Returns application UID
// ---------------------------------------------------------
//
TUid CGifAnimationApp::AppDllUid() const
{
return KUidGifAnimation;
}
// ---------------------------------------------------------
// CGifAnimationApp::CreateDocumentL()
// Creates CGifAnimationDocument object
// ---------------------------------------------------------
//
CApaDocument* CGifAnimationApp::CreateDocumentL()
{
return CGifAnimationDocument::NewL( *this );
}
// ================= OTHER EXPORTED FUNCTIONS ==============
//
// ---------------------------------------------------------
// NewApplication()
// Constructs CGifAnimationApp
// Returns: created application object
// ---------------------------------------------------------
//
EXPORT_C CApaApplication* NewApplication()
{
return new CGifAnimationApp;
}
// ---------------------------------------------------------
// E32Dll(TDllReason)
// Entry point function for EPOC Apps
// Returns: KErrNone: No error
// ---------------------------------------------------------
//
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -