~ubuntu-branches/ubuntu/vivid/ofono-qt/vivid

« back to all changes in this revision

Viewing changes to lib/ofonomodemmanager.h

  • Committer: Package Import Robot
  • Author(s): Ricardo Salveti de Araujo
  • Date: 2013-06-04 06:39:51 UTC
  • Revision ID: package-import@ubuntu.com-20130604063951-2v4g0yyx0pey2sg5
Tags: 1.5+git20120419+bcf0c04-0ubuntu1
Initial release for Ubuntu

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    //! Returns a list of d-bus object paths that represent available modems
45
45
    Q_INVOKABLE QStringList modems() const;
46
46
 
47
 
signals:
 
47
Q_SIGNALS:
48
48
    //! Issued when a modem has been added
49
49
    void modemAdded(const QString &modemPath);
50
50
    
51
51
    //! Issued when a modem has been removed
52
52
    void modemRemoved(const QString &modemPath);
53
53
 
54
 
private slots:
 
54
private Q_SLOTS:
55
55
    void onModemAdded(const QDBusObjectPath &path, const QVariantMap &map);
56
56
    void onModemRemoved(const QDBusObjectPath &path);
57
57