www.pudn.com > Full-Duplex_Audio_Example.rar > fullduplexexdocument.h
/*
* =============================================================================
* Name : FullDuplexExDocument.h
* Part of : FullDuplexEx
* Description : Application framework | Document 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 FULLDUPLEXEXDOCUMENT_H
#define FULLDUPLEXEXDOCUMENT_H
// INCLUDES
#include
// CONSTANTS
// FORWARD DECLARATIONS
class CEikAppUi;
// CLASS DECLARATION
/**
* CFullDuplexExDocument application class.
*/
class CFullDuplexExDocument : public CAknDocument
{
public: // Constructors and destructor
/**
* Two-phased constructor.
*/
static CFullDuplexExDocument* NewL(CEikApplication& aApp);
/**
* Destructor.
*/
virtual ~CFullDuplexExDocument();
private:
/**
* EPOC default constructor.
*/
CFullDuplexExDocument(CEikApplication& aApp);
void ConstructL();
private:
/**
* From CEikDocument, create CFullDuplexExAppUi "App UI" object.
*/
CEikAppUi* CreateAppUiL();
};
#endif
// End of File