piprofilerui/ui/hb/inc/notifications.h
branchRCL_3
changeset 12 aefcba28a3e0
child 21 b3cee849fa46
equal deleted inserted replaced
11:454d022d514b 12:aefcba28a3e0
       
     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: 
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef NOTIFICATIONS_H_
       
    19 #define NOTIFICATIONS_H_
       
    20 
       
    21 #include <qstring> 
       
    22 
       
    23 /**
       
    24  * Notifications class for viewing notification messages.
       
    25  */
       
    26 
       
    27 class Notifications
       
    28 {
       
    29 public:
       
    30 
       
    31     static void showInformationNote(const QString &text);
       
    32     static void showErrorNote(const QString &text);
       
    33     static void showMessageBox(const QString &text);
       
    34 
       
    35 private:
       
    36 
       
    37 };
       
    38 
       
    39 #endif // NOTIFICATIONS_H_