~tiagosh/telephony-service/ussd

« back to all changes in this revision

Viewing changes to handler/handlerdbus.h

Merge the changes for multiple account support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    bool connectToBus();
47
47
 
48
48
    // messages related
49
 
    Q_NOREPLY void SendMessage(const QStringList &number, const QString &message);
50
 
    Q_NOREPLY void AcknowledgeMessages(const QStringList &numbers, const QStringList &messageIds);
 
49
    Q_NOREPLY void SendMessage(const QStringList &number, const QString &message, const QString &accountId);
 
50
    Q_NOREPLY void AcknowledgeMessages(const QStringList &numbers, const QStringList &messageIds, const QString &accountId);
51
51
 
52
52
    // call related
53
 
    Q_NOREPLY void StartCall(const QString &number);
 
53
    Q_NOREPLY void StartCall(const QString &number, const QString &accountId);
54
54
    Q_NOREPLY void HangUpCall(const QString &objectPath);
55
55
    Q_NOREPLY void SetHold(const QString &objectPath, bool hold);
56
56
    Q_NOREPLY void SetMuted(const QString &objectPath, bool muted);