S60 3rd Edition SDK FP1 for Symbian OS
Example Applications Guide

CSimpleCubeApp Class Reference

#include <SimpleCubeApp.h>

Inherits CAknApplication.

Inheritance diagram for CSimpleCubeApp:

Inheritance graph
List of all members.

Detailed Description

Application class. Provides factory method to create a concrete document object.

Definition at line 28 of file SimpleCubeApp.h.

Private Member Functions

CApaDocument * CreateDocumentL ()
TUid AppDllUid () const


Member Function Documentation

CApaDocument * CSimpleCubeApp::CreateDocumentL  )  [private]
 

From CApaApplication, creates and returns CSimpleCubeDocument document object.

Returns:
Pointer to the created document object.

Definition at line 36 of file SimpleCubeApp.cpp.

References CSimpleCubeDocument::NewL().

00037     {
00038     return CSimpleCubeDocument::NewL( *this );
00039     }

TUid CSimpleCubeApp::AppDllUid  )  const [private]
 

From CApaApplication, returns application's UID (KUidSimpleCube).

Returns:
Value of KUidSimpleCube.

Definition at line 25 of file SimpleCubeApp.cpp.

00026     {
00027     return KUidSimpleCube;
00028     }


The documentation for this class was generated from the following files:

© Nokia 2006

Back to top