phoneapp/phoneuiqtviewadapter/tsrc/ut_phoneindicatorcontroller/logsevent.h
changeset 77 2be0b271d017
child 78 baacf668fe89
equal deleted inserted replaced
72:c76a0b1755b9 77:2be0b271d017
       
     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 #ifndef LOGSEVENT_H_
       
    18 #define LOGSEVENT_H_
       
    19 
       
    20 #include <QObject>
       
    21 /*!
       
    22  * Mock
       
    23  */
       
    24 class LogsEvent: public QObject
       
    25 {
       
    26 Q_OBJECT
       
    27  
       
    28 public:
       
    29  
       
    30     LogsEvent();
       
    31     virtual ~LogsEvent();
       
    32     
       
    33     int duplicates();
       
    34     bool isRemotePartyPrivate()const ;
       
    35     const QString& remoteParty() const;
       
    36     const QString& number() const;
       
    37 };
       
    38 
       
    39 #endif /* LOGSEVENT_H_ */