homescreenapp/serviceproviders/hsmenuserviceprovider/tsrc/t_hsmenuserviceprovider/inc/t_hsmenuentryremovedcallback.h
changeset 96 458d8c8d9580
equal deleted inserted replaced
92:6727c5d0afc7 96:458d8c8d9580
       
     1 /*
       
     2 * Copyright (c) 2010 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:  Tests for HomeScreenStateProvider class.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef T_HS_MENU_ENTRY_REMOVED_CALLBACK_H
       
    19 #define T_HS_MENU_ENTRY_REMOVED_CALLBACK_H
       
    20 
       
    21 #include <QObject>
       
    22 
       
    23 class T_HsMenuEntryRemovedCallback: public QObject
       
    24 {
       
    25     Q_OBJECT
       
    26 public:
       
    27     T_HsMenuEntryRemovedCallback(): mCallsCount(0) {}
       
    28     int callsCount() {return mCallsCount;}
       
    29 public slots:
       
    30         void callback() { ++mCallsCount;};
       
    31 private:
       
    32     int mCallsCount;
       
    33 };
       
    34 
       
    35 #endif