idlehomescreen/inc/xnecomelementproxy.h
changeset 0 f72a12da539e
equal deleted inserted replaced
-1:000000000000 0:f72a12da539e
       
     1 /*
       
     2 * Copyright (c) 2002-2008 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:  Proxy to access xmluiml language specific element plugins.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef XN_ECOM_ELEMENT_PROXY_H
       
    21 #define XN_ECOM_ELEMENT_PROXY_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 #include <ecom/ecom.h>
       
    26 #include "mxndomvisitor.h"
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 *  
       
    32 *  Proxy class to access xmluiml language specific element 
       
    33 *  visitor plugins
       
    34 *
       
    35 *  @lib xnecomelementproxy
       
    36 *  @since Series 60 3.1
       
    37 */
       
    38 class TXnEComElementProxy
       
    39     {
       
    40     public:  // Constructors and destructor
       
    41         
       
    42         /**
       
    43         * Load plugin based on it's namespace.
       
    44         * Plugin is released calling Release() function.
       
    45         * @since Series 60 3.1
       
    46         * @param aNS Namespace
       
    47         * @return MXnDomVisitor type object. Ownership is transferred to a caller 
       
    48         */
       
    49         public:
       
    50 	        IMPORT_C static MXnDomVisitor * CreateImplementationL( const TDesC8& aNS );
       
    51     };
       
    52 
       
    53 #endif      // XN_ECOM_ELEMENT_PROXY_H   
       
    54             
       
    55 // End of File