pkiutilities/CertmanUi/INC/Certmanui.h
changeset 0 164170e6151a
equal deleted inserted replaced
-1:000000000000 0:164170e6151a
       
     1 /*
       
     2 * Copyright (c) 2003-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 "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:   Application UI class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef     CERTMANUI_H
       
    20 #define     CERTMANUI_H
       
    21 
       
    22 //  INCLUDES
       
    23 #include <aknview.h>
       
    24 #include <ConeResLoader.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  CertManUI application UI class.
       
    30 *
       
    31 *  @lib certmanui.lib
       
    32 */
       
    33 NONSHARABLE_CLASS( CCertManUi ): public CCoeControl
       
    34   {
       
    35   public: // functions
       
    36 
       
    37         /**
       
    38         * Initializes CCertManUi resource file
       
    39         */
       
    40     static void InitializeLibL();
       
    41 
       
    42         /**
       
    43         * Uninitializes CCertManUi resource file
       
    44         */
       
    45         static void UnInitializeLib();
       
    46 
       
    47   private: // functions
       
    48 
       
    49         /**
       
    50         * C++ default constructor
       
    51         */
       
    52     CCertManUi();
       
    53 
       
    54         /**
       
    55         * Destructor
       
    56         */
       
    57     ~CCertManUi();
       
    58 
       
    59         /**
       
    60         * EPOC default constructor
       
    61         */
       
    62     void ConstructL();
       
    63 
       
    64         /**
       
    65         * Used in ConstructL to get resource file
       
    66         */
       
    67     void AddResourceFileL();
       
    68 
       
    69   private: // data
       
    70 
       
    71         /**
       
    72         * To get hold of iResourceLoader
       
    73         */
       
    74         RConeResourceLoader       iResourceLoader;
       
    75   };
       
    76 
       
    77 #endif //   CERTMANUI_H
       
    78 
       
    79 // End of File