blob: 318f83b0b0eae2af40a4d56a0828fca303047a71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/****************************************************************************
**
** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the $MODULE$ of the Qt Toolkit.
**
** $TROLLTECH_DUAL_EMBEDDED_LICENSE$
**
****************************************************************************/
#ifndef __QtS60MainAPPLICATION_H__
#define __QtS60MainAPPLICATION_H__
// INCLUDES
#include <aknapp.h>
// CLASS DECLARATION
static TUid ProcessUid()
{
RProcess me;
TSecureId securId = me.SecureId();
me.Close();
return securId.operator TUid();
}
/**
* CQtS60MainApplication application class.
* Provides factory to create concrete document object.
* An instance of CQtS60MainApplication is the application part of the
* AVKON application framework for the QtS60Main example application.
*/
class CQtS60MainApplication : public CAknApplication
{
public: // Functions from base classes
/**
* From CApaApplication, AppDllUid.
* @return Application's UID (KUidQtS60MainApp).
*/
TUid AppDllUid() const;
/**
* From CApaApplication, ResourceFileName
* @return Application's resource filename (KUidQtS60MainApp).
*/
TFileName ResourceFileName() const;
protected: // Functions from base classes
/**
* From CApaApplication, CreateDocumentL.
* Creates CQtS60MainDocument document object. The returned
* pointer in not owned by the CQtS60MainApplication object.
* @return A pointer to the created document object.
*/
CApaDocument* CreateDocumentL();
};
#endif // __QtS60MainAPPLICATION_H__
// End of File
|