meetingrequest/mrgui/inc/cesmrvalidatorfactory.h
branchRCL_3
changeset 25 3533d4323edc
equal deleted inserted replaced
24:d189ee25cf9d 25:3533d4323edc
       
     1 /*
       
     2 * Copyright (c) 2009 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:  ESMR ui base class
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CESMRVALIDATORFACTORY_H
       
    20 #define CESMRVALIDATORFACTORY_H
       
    21 
       
    22 //<cmail>
       
    23 #include "esmrdef.h"
       
    24 //</cmail>
       
    25 #include <e32base.h>
       
    26 #include "mesmrfieldvalidator.h"
       
    27 
       
    28 NONSHARABLE_CLASS( CESMRValidatorFactory ): public CBase
       
    29     {
       
    30 public:
       
    31     /**
       
    32      * Returns validator for given calendar event type.
       
    33      *
       
    34      * @param aType calendar event type
       
    35      */
       
    36     static MESMRFieldValidator* CreateValidatorL(
       
    37             TESMRCalendarEventType aType );
       
    38 
       
    39     };
       
    40 
       
    41 #endif  // CESMRVALIDATORFACTORY_H
       
    42 
       
    43 // EOF
       
    44