www.pudn.com > Full-Duplex_Audio_Example.rar > fullduplexexapp.h


/* 
* ============================================================================= 
*  Name        : FullDuplexExApp.cpp 
*  Part of     : FullDuplexEx 
*  Description : Application Framework | Application class declaration 
                  
*  Version     :  
* 
*  Copyright © 2007 Nokia. All rights reserved. 
*  This material, including documentation and any related  
*  computer programs, is protected by copyright controlled by  
*  Nokia. All rights are reserved. Copying, including  
*  reproducing, storing, adapting or translating, any  
*  or all of this material requires the prior written consent of  
*  Nokia. This material also contains confidential  
*  information which may not be disclosed to others without the  
*  prior written consent of Nokia. 
* ============================================================================= 
*/ 
 
#ifndef FULLDUPLEXEXAPP_H 
#define FULLDUPLEXEXAPP_H 
 
// INCLUDES 
#include  
 
// CONSTANTS 
// UID of the application 
const TUid KUidFullDuplexEx = { 0x101ff1e0 }; 
 
// CLASS DECLARATION 
 
/** 
* CFullDuplexExApp application class. 
* Provides factory to create concrete document object. 
*  
*/ 
class CFullDuplexExApp : public CAknApplication 
    { 
    private: 
 
        /** 
        * From CApaApplication, creates CFullDuplexExDocument document object. 
        * @return A pointer to the created document object. 
        */ 
        CApaDocument* CreateDocumentL(); 
         
        /** 
        * From CApaApplication, returns application's UID (KUidFullDuplexEx). 
        * @return The value of KUidFullDuplexEx. 
        */ 
        TUid AppDllUid() const; 
    }; 
 
#endif 
 
// End of File