clock/ftudatetimewizard/src/ftudatetimewizardfactory.cpp
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: Wizard plugin factory class to instantiate the wizard plugin
       
    15  *
       
    16  */
       
    17 
       
    18 // System includes
       
    19 #include <QtGui> // For Q_EXPORT_PLUGIN2
       
    20 
       
    21 // User includes
       
    22 #include "ftudatetimewizardfactory.h"
       
    23 #include "ftudatetimewizard.h"
       
    24 
       
    25 /*!
       
    26     Returns the FTU plugin wizard instance.
       
    27  */
       
    28 FtuWizard* FtuDateTimeWizardFactory::createWizard() const
       
    29 {
       
    30 	return new FtuDateTimeWizard();
       
    31 }
       
    32 
       
    33 Q_EXPORT_PLUGIN2(ftudatetimeplugin, FtuDateTimeWizardFactory)
       
    34 
       
    35 // End of file  --Don't remove this.