sdkcreationmw/sdkexamples/cppexamples/S60Ex/HapticsExample/src/hapticsexampleapplication.cpp
author rajpuroh
Wed, 21 Apr 2010 09:56:53 +0530
changeset 1 ac50fd48361b
parent 0 b26acd06ea60
permissions -rw-r--r--
Second Contribution
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     1
/*
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     3
* All rights reserved.
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     4
* This component and the accompanying materials are made available
1
ac50fd48361b Second Contribution
rajpuroh
parents: 0
diff changeset
     5
* under the terms of the License "Eclipse Public License v1.0"
0
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     6
* which accompanies this distribution, and is available
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     8
*
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
     9
* Initial Contributors:
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    10
* Nokia Corporation - initial contribution.
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    11
*
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    12
* Contributors:
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    13
*
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    14
* Description:  Implementation of the main application class.
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    15
*
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    16
*/
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    17
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    18
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    19
#include "hapticsexampledocument.h"
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    20
#include "hapticsexampleapplication.h"
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    21
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    22
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    23
/* UID for the application;
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    24
 * this should correspond to the uid defined in the mmp file
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    25
 */
1
ac50fd48361b Second Contribution
rajpuroh
parents: 0
diff changeset
    26
const TUid KUidHapticsExampleApp = { 0xE0007DFE };
0
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    27
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    28
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    29
// ---------------------------------------------------------------------------
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    30
// From class CApaApplication.
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    31
// Returns application UID
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    32
// ---------------------------------------------------------------------------
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    33
//
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    34
TUid CHapticsExampleApplication::AppDllUid() const
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    35
    {
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    36
    // Return the UID for the Haptics Example application
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    37
    return KUidHapticsExampleApp;
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    38
    }
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    39
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    40
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    41
// ---------------------------------------------------------------------------
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    42
// From class CApaApplication.
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    43
// Creates CApaDocument object
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    44
// ---------------------------------------------------------------------------
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    45
//
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    46
CApaDocument* CHapticsExampleApplication::CreateDocumentL()
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    47
    {
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    48
    // Create an HapticsExample document, and return a pointer to it
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    49
    return new ( ELeave ) CHapticsExampleDocument( *this );
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    50
    }
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    51
b26acd06ea60 First Contribution of SDK components
rajpuroh
parents:
diff changeset
    52
// End of File