~khurshid-alam/unity-control-center/use-usd-schemas

« back to all changes in this revision

Viewing changes to panels/network/net-device.h

  • Committer: Sebastien Bacher
  • Author(s): Khurshid Alam
  • Date: 2019-05-17 07:34:33 UTC
  • mfrom: (12920.1.1 unity-control-center)
  • Revision ID: seb128@ubuntu.com-20190517073433-ch2kybdhhzpkmvq4
Network: Port to libnm 1.2 (lp: #1744619)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
#include <glib-object.h>
26
26
 
 
27
#include <NetworkManager.h>
27
28
#include "net-object.h"
28
 
#include "nm-device.h"
29
29
 
30
30
G_BEGIN_DECLS
31
31
 
49
49
struct _NetDeviceClass
50
50
{
51
51
        NetObjectClass               parent_class;
 
52
 
 
53
        NMConnection * (*get_find_connection) (NetDevice *device);
52
54
};
53
55
 
54
56
GType            net_device_get_type                    (void);
56
58
NMDevice        *net_device_get_nm_device               (NetDevice      *device);
57
59
NMConnection    *net_device_get_find_connection         (NetDevice      *device);
58
60
 
 
61
GSList          *net_device_get_valid_connections       (NetDevice      *device);
 
62
 
59
63
G_END_DECLS
60
64
 
61
65
#endif /* __NET_DEVICE_H */