S60 5th Edition SDK
Example Applications Guide

CCSSyncApplication Class Reference

#include <cssyncapplication.h>

Inheritance diagram for CCSSyncApplication:

List of all members.

Detailed Description

CCSSyncApplication An instance of CCSSyncApplication is the application part of the AVKON application framework for the CSSync example application.

Definition at line 33 of file cssyncapplication.h.

Public Member Functions

TUid AppDllUid () const

Protected Member Functions

CApaDocument * CreateDocumentL ()


Member Function Documentation

TUid CCSSyncApplication::AppDllUid  )  const
 

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

Returns:
the UID of this Application/Dll.

Definition at line 38 of file cssyncapplication.cpp.

00039     {
00040     return KUidCSSyncApp;
00041     }

CApaDocument * CCSSyncApplication::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 cssyncapplication.cpp.

References CCSSyncDocument::NewL().

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


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

© Nokia 2009

Back to top