clock/ftudatetimewizard/src/ftudatetimewizardfactory.cpp
changeset 32 ea672fcb0ea0
parent 26 a949c2543c15
child 34 1850873ab5e9
child 37 360d55486d7f
equal deleted inserted replaced
26:a949c2543c15 32:ea672fcb0ea0
     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.