hwrmhaptics/examples/hapticstestapp/inc/hapticstestapplication.h
changeset 76 cb32bcc88bad
equal deleted inserted replaced
73:d38941471f1c 76:cb32bcc88bad
       
     1 /*
       
     2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Symbian Foundation License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Application class definition.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __HAPTICSTEST_APPLICATION_H__
       
    20 #define __HAPTICSTEST_APPLICATION_H__
       
    21 
       
    22 #include <aknapp.h>
       
    23 
       
    24 /**
       
    25  * An instance of CHapticsTestApplication is the application part of the AVKON
       
    26  * application framework for the hapticstest example application
       
    27  */
       
    28 class CHapticsTestApplication : public CAknApplication
       
    29     {
       
    30 public:  // from CAknApplication
       
    31 
       
    32    /**
       
    33     *
       
    34     * Returns the application DLL UID value
       
    35     * @return the UID of this Application/Dll
       
    36     */
       
    37     TUid AppDllUid() const;
       
    38 
       
    39 protected: // from CAknApplication
       
    40 
       
    41    /** 
       
    42     * Create a CApaDocument object and return a pointer to it
       
    43     * @return a pointer to the created document
       
    44     */
       
    45     CApaDocument* CreateDocumentL();
       
    46     };
       
    47 
       
    48 #endif // __HAPTICSTEST_APPLICATION_H__