~ubuntu-branches/ubuntu/trusty/unity-control-center/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2014-01-08 16:29:18 UTC
  • Revision ID: package-import@ubuntu.com-20140108162918-g29dd08tr913y2qh
Tags: upstream-14.04.0
ImportĀ upstreamĀ versionĀ 14.04.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 
2
 *
 
3
 * Copyright (C) 2011-2012 Richard Hughes <richard@hughsie.com>
 
4
 *
 
5
 * Licensed under the GNU General Public License Version 2
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
20
 */
 
21
 
 
22
#ifndef __NET_DEVICE_WIFI_H
 
23
#define __NET_DEVICE_WIFI_H
 
24
 
 
25
#include <glib-object.h>
 
26
 
 
27
#include "net-device.h"
 
28
 
 
29
G_BEGIN_DECLS
 
30
 
 
31
#define NET_TYPE_DEVICE_WIFI          (net_device_wifi_get_type ())
 
32
#define NET_DEVICE_WIFI(o)            (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_DEVICE_WIFI, NetDeviceWifi))
 
33
#define NET_DEVICE_WIFI_CLASS(k)      (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_DEVICE_WIFI, NetDeviceWifiClass))
 
34
#define NET_IS_DEVICE_WIFI(o)         (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_DEVICE_WIFI))
 
35
#define NET_IS_DEVICE_WIFI_CLASS(k)   (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_DEVICE_WIFI))
 
36
#define NET_DEVICE_WIFI_GET_CLASS(o)  (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_DEVICE_WIFI, NetDeviceWifiClass))
 
37
 
 
38
typedef struct _NetDeviceWifiPrivate   NetDeviceWifiPrivate;
 
39
typedef struct _NetDeviceWifi          NetDeviceWifi;
 
40
typedef struct _NetDeviceWifiClass     NetDeviceWifiClass;
 
41
 
 
42
struct _NetDeviceWifi
 
43
{
 
44
         NetDevice                       parent;
 
45
         NetDeviceWifiPrivate           *priv;
 
46
};
 
47
 
 
48
struct _NetDeviceWifiClass
 
49
{
 
50
        NetDeviceClass                   parent_class;
 
51
};
 
52
 
 
53
GType            net_device_wifi_get_type       (void);
 
54
 
 
55
G_END_DECLS
 
56
 
 
57
#endif /* __NET_DEVICE_WIFI_H */
 
58