messagingapp/msgnotifications/msgerrornotifier/inc/msgerrornotifiersvc.h
changeset 25 84d9eb65b26f
child 37 518b245aa84c
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 #ifndef MSGERRORNOTIFIERSVC_H_
       
    18 #define MSGERRORNOTIFIERSVC_H_
       
    19 
       
    20 #include <QObject>
       
    21 #include <xqserviceprovider.h>
       
    22 #include <qvariant.h>
       
    23 
       
    24 class MsgErrorNotifierSvc: public XQServiceProvider
       
    25 {
       
    26 
       
    27 Q_OBJECT
       
    28 
       
    29 public:
       
    30     /**
       
    31      * constructor
       
    32      */
       
    33     MsgErrorNotifierSvc(QObject* parent = 0);
       
    34 
       
    35     /**
       
    36      * destructor
       
    37      */
       
    38     virtual ~MsgErrorNotifierSvc();
       
    39 
       
    40 public slots:
       
    41 
       
    42     /**
       
    43      * The service slot for displaying the error note.
       
    44      * @param displayParams QVariantList with contact name
       
    45      * and conversation id.
       
    46      */
       
    47     void displayErrorNote(QVariantList displayParams);
       
    48 
       
    49 };
       
    50 
       
    51 #endif /* MSGERRORNOTIFIERSVC_H_ */