creator/engine/inc/creator_scriptelementfactory.h
branchRCL_3
changeset 20 fad26422216a
parent 19 b3cee849fa46
child 21 f8280f3bfeb7
equal deleted inserted replaced
19:b3cee849fa46 20:fad26422216a
     1 /*
       
     2 * Copyright (c) 2010 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: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef CREATORSCRIPTELEMENTFACTORY_H_
       
    22 #define CREATORSCRIPTELEMENTFACTORY_H_
       
    23 
       
    24 #include "creator_scriptelement.h"
       
    25 
       
    26 /**
       
    27  * Creates script element instance based on the element name and context.
       
    28  */
       
    29 class TCreatorScriptElementFactory
       
    30 {
       
    31 public:
       
    32     static CCreatorScriptElement* CreateElementL(CCreatorEngine* aEngine, const TDesC& aElementName, const TDesC& aContext = KNullDesC);
       
    33 };
       
    34 
       
    35 #endif /*CREATORSCRIPTELEMENTFACTORY_H_*/