creator/inc/creator_noteelement.h
branchRCL_3
changeset 22 fad26422216a
parent 0 d6fe6244b863
equal deleted inserted replaced
21:b3cee849fa46 22:fad26422216a
       
     1 /*
       
     2 * Copyright (c) 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CREATORNOTEELEMENT_H_
       
    20 #define CREATORNOTEELEMENT_H_
       
    21 
       
    22 #include "creator_scriptelement.h"
       
    23 
       
    24 namespace creatornote
       
    25 {
       
    26     _LIT(KNote, "note");
       
    27     _LIT(KText, "text");
       
    28 }
       
    29 
       
    30 class CCreatorNoteElement : public CCreatorScriptElement
       
    31 {
       
    32 public:
       
    33     static CCreatorNoteElement* NewL(CCreatorEngine* aEngine, const TDesC& aName, const TDesC& aContext = KNullDesC);
       
    34     void ExecuteCommandL();
       
    35     
       
    36 protected:
       
    37     CCreatorNoteElement(CCreatorEngine* aEngine);
       
    38 };
       
    39 
       
    40 #endif /*CREATORNOTEELEMENT_H_*/