videoplayback/videoplaybackview/tsrc/testvideoplaybackview/stub/inc/hbnotificationdialog.h
changeset 65 a9d57bd8d7b7
equal deleted inserted replaced
62:0e1e938beb1a 65:a9d57bd8d7b7
       
     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:  stub hbnotificationdialog
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version:   1 %
       
    19 
       
    20 
       
    21 
       
    22 #ifndef HBNOTIFICATIONDIALOG_H
       
    23 #define HBNOTIFICATIONDIALOG_H
       
    24 
       
    25 #include "hbdialog.h"
       
    26 
       
    27 class HbNotificationDialog : public HbDialog
       
    28 {
       
    29     Q_OBJECT
       
    30 
       
    31     public:
       
    32         HbNotificationDialog(){mNotifConstructCount++;}
       
    33         virtual ~HbNotificationDialog(){};
       
    34         void setTitle(const QString &title)
       
    35         {
       
    36             Q_UNUSED(title);
       
    37         }
       
    38 
       
    39    static int mNotifConstructCount;
       
    40 
       
    41 };
       
    42 
       
    43 
       
    44 #endif /*HBNOTIFICATIONDIALOG_H*/
       
    45