~ubuntu-branches/ubuntu/precise/networkmanagement/precise-updates

« back to all changes in this revision

Viewing changes to libs/client/remoteactivatablelist.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl, Modestas Vainius, Michael Biebl
  • Date: 2011-05-27 12:18:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110527121825-vfufwquq3vy0k3zn
Tags: 0.1+git20110526.911025d-1
[ Modestas Vainius ]
* Use official KDE branding in the package descriptions.

[ Michael Biebl ]
* New upstream Git snapshot 911025d81fdfbe09b64705e94e5411f521c38e3e.
* debian/control
  - Bump Build-Depends on kdelibs5-dev and kdebase-workspace-dev to
    (>= 4:4.6.0).
  - Bump Build-Depends on network-manager-dev and libnm-util-dev to
    (>= 0.8.1).
  - Bump Depends on network-manager to (>= 0.8.1).

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <QObject>
25
25
 
26
26
#include "knmclient_export.h"
 
27
#include "remoteinterfaceconnection.h"
27
28
 
28
29
class RemoteActivatable;
29
30
class RemoteActivatableListPrivate;
36
37
    ~RemoteActivatableList();
37
38
    QList<RemoteActivatable *> activatables() const;
38
39
    void init();
 
40
 
 
41
    /**
 
42
     * @return the RemoteInterfaceConnection for a given network interface
 
43
     * @param interface the Solid::Control::NetworkInterface state
 
44
     * @param activatables the RemoteActivatableList of all connections
 
45
     */
 
46
    RemoteInterfaceConnection* connectionForInterface(Solid::Control::NetworkInterface *interface);
 
47
 
39
48
Q_SIGNALS:
40
49
    void activatableAdded(RemoteActivatable*);
41
50
    void activatableRemoved(RemoteActivatable*);