S60 5th Edition SDK
Example Applications Guide

CCSAsyncApplication Class Reference

#include <csasyncapplication.h>

Inheritance diagram for CCSAsyncApplication:

List of all members.

Detailed Description

CCSAsyncApplication An instance of CCSAsyncApplication is the application part of the AVKON application framework for the CSAsync example application.

Definition at line 32 of file csasyncapplication.h.

Public Member Functions

TUid AppDllUid () const

Protected Member Functions

CApaDocument * CreateDocumentL ()


Member Function Documentation

TUid CCSAsyncApplication::AppDllUid  )  const
 

From CAknApplication, AppDllUid. Returns the application DLL UID value.

Returns:
the UID of this Application/Dll.

Definition at line 38 of file csasyncapplication.cpp.

00039     {
00040     return KUidCSAsyncApp;
00041     }

CApaDocument * CCSAsyncApplication::CreateDocumentL  )  [protected]
 

From CAknApplication, CreateDocumentL. Creates a CApaDocument object and return a pointer to it.

Returns:
A pointer to the created document.

Definition at line 28 of file csasyncapplication.cpp.

References CCSAsyncDocument::NewL().

00029     {
00030     return ( static_cast<CApaDocument*>( CCSAsyncDocument::NewL( *this ) ) );
00031     }


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

© Nokia 2009

Back to top