idlehomescreen/xmluirendering/renderingplugins/xnnppluginfactory/inc/xnnpplugin.h
changeset 0 f72a12da539e
equal deleted inserted replaced
-1:000000000000 0:f72a12da539e
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  Wrapper class for Netscape Plugin API.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef _XNNPPLUGIN_H
       
    21 #define _XNNPPLUGIN_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include "xncomponent.h"
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  @ingroup group_xnnppluginfactory
       
    30 * 
       
    31 *  Wrapper class for Netscape Plugin API.
       
    32 *
       
    33 *  @lib xn3nppluginfactory.lib
       
    34 *  @since Series 60 3.1
       
    35 */
       
    36 class CXnNPPlugin : public CXnComponent
       
    37    {
       
    38     public: // Constructors and destructor
       
    39         /**
       
    40         * Two-phased constructor.
       
    41         */
       
    42         static CXnNPPlugin* NewL();
       
    43 
       
    44         /**
       
    45         * Destructor.
       
    46         */
       
    47         virtual ~CXnNPPlugin();
       
    48 
       
    49     private:
       
    50         /**
       
    51         * C++ default constructor.
       
    52         */
       
    53         CXnNPPlugin();
       
    54     
       
    55         /**
       
    56         * By default Symbian 2nd phase constructor is private.
       
    57         */
       
    58         void ConstructL();
       
    59 
       
    60     private:
       
    61    };
       
    62 
       
    63 #endif    // _XNNPPLUGIN_H
       
    64 
       
    65 // End of File