www.pudn.com > SystemSounds_Example_v1_0.zip > SystemSoundsDocument.h


/*
* ============================================================================
* Name : CSystemSoundsDocument from SystemSoundsDocument.h
* Part of : SystemSounds
* Created : 06/12/2003 by Forum Nokia
* Description:
* Declares document for application.
* Version :
* Copyright: Nokia
* ============================================================================
*/

#ifndef SYSTEMSOUNDSDOCUMENT_H
#define SYSTEMSOUNDSDOCUMENT_H

// INCLUDES
#include <akndoc.h>

// CONSTANTS

// FORWARD DECLARATIONS
class CEikAppUi;

// CLASS DECLARATION

/**
* CSystemSoundsDocument application class.
*/
class CSystemSoundsDocument : public CAknDocument
{
public: // Constructors and destructor
/**
* Two-phased constructor.
*/
static CSystemSoundsDocument* NewL(CEikApplication&amt; aApp);

/**
* Destructor.
*/
virtual ~CSystemSoundsDocument();

public: // New functions

protected: // New functions

protected: // Functions from base classes

private:

/**
* EPOC default constructor.
*/
CSystemSoundsDocument(CEikApplication&amt; aApp);
void ConstructL();

private:

/**
* From CEikDocument, create CSystemSoundsAppUi "App UI" object.
*/
CEikAppUi* CreateAppUiL();
};

#endif

// End of File