devicemgmtindicatorsplugin/inc/tarmtrustindicator.h
changeset 47 d316aecb87fd
equal deleted inserted replaced
46:b9b00b134b0d 47:d316aecb87fd
       
     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: Tarm Trust Indicator class
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef TARMTRUSTINDICATOR_H
       
    19 #define TARMTRUSTINDICATOR_H
       
    20 
       
    21 #include <QObject>
       
    22 #include <dmindicator.h>
       
    23 #include <hbindicatorinterface.h>
       
    24 
       
    25 /**
       
    26  * Tarm Trust indicator class. 
       
    27  * Handles client request and showing the indications. 
       
    28  */
       
    29 class TarmTrustIndicator : public DMIndicator
       
    30     {
       
    31 public:
       
    32     /**
       
    33      * Constructor
       
    34      */
       
    35     TarmTrustIndicator(const QString &indicatorType,
       
    36             HbIndicatorInterface::Category category,
       
    37             HbIndicatorInterface::InteractionTypes interactionTypes);
       
    38 
       
    39     /**
       
    40      * Destructor
       
    41      */
       
    42     ~TarmTrustIndicator();
       
    43 
       
    44     /**
       
    45      * @see HbIndicatorInterface
       
    46      */
       
    47     QVariant indicatorData(int role) const;
       
    48 
       
    49     };
       
    50 
       
    51 #endif // TARMTRUSTINDICATOR_H