www.pudn.com > nokie_soundplayer.rar > soundapp.cpp


/* Copyright (c) 2004, Nokia. All rights reserved */ 
 
 
// INCLUDE FILES 
#include "SoundApp.h" 
#include "SoundDoc.h" 
 
 
// ========================= MEMBER FUNCTIONS ================================== 
 
// ----------------------------------------------------------------------------- 
// CSoundApplication::AppDllUid() 
// Return the UID for the CSoundApplication application 
// ----------------------------------------------------------------------------- 
// 
TUid CSoundApplication::AppDllUid() const 
    { 
    return KUidSoundApp; 
    } 
 
// ----------------------------------------------------------------------------- 
// CSoundApplication::CreateDocumentL() 
// Create an CSoundDocument document, and return a pointer to it 
// ----------------------------------------------------------------------------- 
// 
CApaDocument* CSoundApplication::CreateDocumentL() 
    { 
 
    return ( static_cast( CSoundDocument::NewL( *this ) ) ); 
    } 
 
 
// End of File