clock/ftudatetimewizard/inc/ftudatetimewizardfactory.h
changeset 45 b6db4fd4947b
parent 23 fd30d51f876b
child 46 ecd7b9840282
equal deleted inserted replaced
23:fd30d51f876b 45:b6db4fd4947b
     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: Definition file for FtuDateTimeWizardFactory class
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef FTUDATETIMEWIZARDFACTORY_H
       
    19 #define FTUDATETIMEWIZARDFACTORY_H
       
    20 
       
    21 // System includes
       
    22 #include <qobject>
       
    23 
       
    24 // User includes
       
    25 #include "ftuwizardfactory.h"
       
    26 
       
    27 class FtuWizard;
       
    28 
       
    29 class FtuDateTimeWizardFactory : public QObject, public FtuWizardFactory
       
    30 {
       
    31 	Q_OBJECT
       
    32 	Q_INTERFACES(FtuWizardFactory)
       
    33 
       
    34 public:
       
    35 	FtuWizard* createWizard() const;
       
    36 };
       
    37 
       
    38 #endif // FTUDATETIMEWIZARDFACTORY_H
       
    39 
       
    40 // End of file  --Don't remove this.