messagingapp/msgnotifications/msgerrornotifier/inc/msgerrornotifier.h
changeset 25 84d9eb65b26f
equal deleted inserted replaced
23:238255e8b033 25:84d9eb65b26f
       
     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  *
       
    16  */
       
    17 
       
    18 #ifndef MSGERRORNOTIFIER_H
       
    19 #define MSGERRORNOTIFIER_H
       
    20 
       
    21 #include <QObject>
       
    22 class MsgErrorNotifierSvc;
       
    23 
       
    24 class MsgErrorNotifier: public QObject
       
    25 {
       
    26 Q_OBJECT
       
    27 
       
    28 public:
       
    29     /**
       
    30      * Constructor
       
    31      */
       
    32     MsgErrorNotifier(QObject *parent = 0);
       
    33 
       
    34     /**
       
    35      * Destructor
       
    36      */
       
    37     ~MsgErrorNotifier();
       
    38 
       
    39 private:
       
    40     /**
       
    41      * Own. The notifier service that pops up a window for
       
    42      * failed message.
       
    43      */
       
    44     MsgErrorNotifierSvc* mErrorNotifier;
       
    45 };
       
    46 
       
    47 #endif // MSGERRORNOTIFIER_H