epoc32/include/mw/akncontrol.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 1 666f914201fb
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     1 /*
     2 * Copyright (c) 2005,2006 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" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  Base class for all S60 UI framework UI controls.
    15 *
    16 *
    17 */
    18 
    19 #ifndef AKN_CONTROL_H
    20 #define AKN_CONTROL_H
    21 
    22 // INCLUDES
    23 #include <e32base.h>
    24 #include <coecntrl.h>
    25 
    26 // FORWARD DECLARATIONS
    27 
    28 // CONSTANTS
    29 
    30 // CLASS DEFINITIONS
    31 
    32 /**
    33  * UI framework base class for all Avkon controls.
    34  *
    35  *  @lib avkon
    36  *  @since S60 3.0
    37  */
    38 class CAknControl : public CCoeControl
    39     {
    40     public:
    41     /**
    42     * Constructor. 
    43     */
    44     IMPORT_C CAknControl();
    45 
    46     /**
    47      * Destructor
    48      */
    49     IMPORT_C ~CAknControl();
    50     
    51     private:
    52     /**
    53      * Virtual method provided to allow extensibility of virtual behaviour
    54      */
    55     IMPORT_C virtual void* ExtensionInterface( TUid aInterface );
    56     
    57     private:
    58     TInt iSpare[6];
    59     };
    60 
    61 #endif // AKN_CONTROL_H