clock/clockui/clockplugins/clocksettingsviewplugin/inc/clocksettingsviewplugin.h
changeset 49 5de72ea7a065
equal deleted inserted replaced
37:360d55486d7f 49:5de72ea7a065
       
     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: 
       
    15 * Header file for ClockSettingsViewPlugin class.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef CLOCKSETTINGSVIEWPLUGIN_H_
       
    21 #define CLOCKSETTINGSVIEWPLUGIN_H_
       
    22 
       
    23 // System includes
       
    24 #include <QObject>
       
    25 #include <clocksettingsviewinterface.h>
       
    26 
       
    27 class ClockSettingsViewPlugin : public QObject, public ClockSettingsViewInterface
       
    28 {
       
    29 	Q_OBJECT
       
    30 	Q_INTERFACES(ClockSettingsViewInterface)
       
    31 
       
    32 public:
       
    33 	ClockSettingsViewPlugin();
       
    34 	~ClockSettingsViewPlugin();
       
    35 	
       
    36 	void launchRegionalSettingsView();
       
    37 
       
    38 };
       
    39 
       
    40 #endif /* CLOCKSETTINGSVIEWPLUGIN_H_ */
       
    41 
       
    42 // End of file	--Don't remove this