Nokia N97 SDK
Example Applications Guide

CHsWidgetApplication Class Reference

#include <HsWidgetApplication.h>

Inheritance diagram for CHsWidgetApplication:

List of all members.

Detailed Description

CHsWidgetApplication application class. Provides factory to create concrete document object. An instance of CHsWidgetApplication is the application part of the AVKON application framework for the HsWidget example application.

Definition at line 32 of file HsWidgetApplication.h.

Public Member Functions

TUid AppDllUid () const

Protected Member Functions

CApaDocument * CreateDocumentL ()


Member Function Documentation

TUid CHsWidgetApplication::AppDllUid  )  const
 

From CApaApplication, AppDllUid.

Returns:
Application's UID (KUidHsWidgetApp).

Definition at line 33 of file HsWidgetApplication.cpp.

00034         {
00035         // Return the UID for the HsWidget application
00036         return KUidHsWidgetApp;
00037         }

CApaDocument * CHsWidgetApplication::CreateDocumentL  )  [protected]
 

From CApaApplication, CreateDocumentL. Creates CHsWidgetDocument document object. The returned pointer in not owned by the CHsWidgetApplication object.

Returns:
A pointer to the created document object.

Definition at line 22 of file HsWidgetApplication.cpp.

References CHsWidgetDocument::NewL().

00023         {
00024         // Create an HsWidget document, and return a pointer to it
00025         return CHsWidgetDocument::NewL(*this);
00026         }


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

© Nokia 2009

Back to top