phoneapp/phoneuiqtviewadapter/tsrc/ut_phoneindicatorcontroller/logsevent.h
changeset 78 baacf668fe89
parent 74 d1c62c765e48
equal deleted inserted replaced
76:cfea66083b62 78:baacf668fe89
    24 class LogsEvent: public QObject
    24 class LogsEvent: public QObject
    25 {
    25 {
    26 Q_OBJECT
    26 Q_OBJECT
    27  
    27  
    28 public:
    28 public:
       
    29 
       
    30 enum LogsEventType
       
    31         {
       
    32         TypeUndefined = -1,
       
    33         TypeVoiceCall,
       
    34         TypeVideoCall,
       
    35         TypeVoIPCall
       
    36         };
    29  
    37  
    30     LogsEvent();
    38     LogsEvent();
    31     virtual ~LogsEvent();
    39     virtual ~LogsEvent();
    32     
    40     
    33     int duplicates();
    41     int duplicates();
    34     bool isRemotePartyPrivate()const ;
    42     bool isRemotePartyPrivate()const ;
    35     const QString& remoteParty() const;
    43     const QString& remoteParty() const;
    36     const QString& number() const;
    44     const QString& number() const;
       
    45     LogsEventType eventType() const;
    37 };
    46 };
    38 
    47 
    39 #endif /* LOGSEVENT_H_ */
    48 #endif /* LOGSEVENT_H_ */