?? audiostreamapp.cpp
字號(hào):
/*
* ============================================================================
* 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
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -