📄 audiostreamapp.cpp
字号:
/*
* ============================================================================
* Name : CAudioStreamApp from AudioStreamApp.cpp
* Part of : AudioStream
* Created : April 28, 2006 by Forum Nokia
* Implementation notes:
*
* Initial content was generated by S60 AppWizard.
* Version : 2.0
* Copyright: Nokia Corporation
* ============================================================================
*/
// INCLUDE FILES
#include "AudioStreamApp.h"
#include "AudioStreamDocument.h"
#ifdef __SERIES60_3X__
#include <eikstart.h>
#endif
// ----------------------------------------------------------------------------
// CAudioStreamApp::AppDllUid()
//
// returns application UID
// ----------------------------------------------------------------------------
TUid CAudioStreamApp::AppDllUid() const
{
return KUidAudioStream;
}
// ----------------------------------------------------------------------------
// CAudioStreamApp::CreateDocumentL()
//
// creates CAudioStreamDocument object
// ----------------------------------------------------------------------------
CApaDocument* CAudioStreamApp::CreateDocumentL()
{
return CAudioStreamDocument::NewL( *this );
}
// ----------------------------------------------------------------------------
// NewApplication()
//
// constructs CAudioStreamApp
// ----------------------------------------------------------------------------
EXPORT_C CApaApplication* NewApplication()
{
return new CAudioStreamApp;
}
// ---------------------------------------------------------
// Entry point function for Symbian Apps, separate function for
// S60 3rd Ed and 1st/2nd Ed
// ---------------------------------------------------------
//
#ifdef __SERIES60_3X__
GLDEF_C TInt E32Main()
{
return EikStart::RunApplication( NewApplication );
}
#else
GLDEF_C TInt E32Dll( TDllReason )
{
return KErrNone;
}
#endif
// End of File
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -