mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-09 04:48:10 +02:00
Our coding style recommends C style comments (/* */) instead of C++ (//). Also, systemd (which we partly fork) uses C style comments for the SPDX-License-Identifier. Unify the style. $ sed -i '1 s#// SPDX-License-Identifier: \([^ ]\+\)$#/* SPDX-License-Identifier: \1 */#' -- $(git ls-files -- '*.[hc]' '*.[hc]pp')
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2013 Red Hat, Inc.
|
|
*/
|
|
|
|
#ifndef NMT_ADDRESS_LIST_H
|
|
#define NMT_ADDRESS_LIST_H
|
|
|
|
#include "nmt-widget-list.h"
|
|
|
|
#define NMT_TYPE_ADDRESS_LIST (nmt_address_list_get_type())
|
|
#define NMT_ADDRESS_LIST(obj) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj), NMT_TYPE_ADDRESS_LIST, NmtAddressList))
|
|
#define NMT_ADDRESS_LIST_CLASS(klass) \
|
|
(G_TYPE_CHECK_CLASS_CAST((klass), NMT_TYPE_ADDRESS_LIST, NmtAddressListClass))
|
|
#define NMT_IS_ADDRESS_LIST(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), NMT_TYPE_ADDRESS_LIST))
|
|
#define NMT_IS_ADDRESS_LIST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), NMT_TYPE_ADDRESS_LIST))
|
|
#define NMT_ADDRESS_LIST_GET_CLASS(obj) \
|
|
(G_TYPE_INSTANCE_GET_CLASS((obj), NMT_TYPE_ADDRESS_LIST, NmtAddressListClass))
|
|
|
|
typedef struct {
|
|
NmtWidgetList parent;
|
|
|
|
} NmtAddressList;
|
|
|
|
typedef struct {
|
|
NmtWidgetListClass parent;
|
|
|
|
} NmtAddressListClass;
|
|
|
|
GType nmt_address_list_get_type(void);
|
|
|
|
typedef enum {
|
|
NMT_ADDRESS_LIST_IP4_WITH_PREFIX,
|
|
NMT_ADDRESS_LIST_IP4,
|
|
NMT_ADDRESS_LIST_IP6_WITH_PREFIX,
|
|
NMT_ADDRESS_LIST_IP6,
|
|
NMT_ADDRESS_LIST_HOSTNAME
|
|
} NmtAddressListType;
|
|
|
|
NmtNewtWidget *nmt_address_list_new(NmtAddressListType list_type);
|
|
|
|
#endif /* NMT_ADDRESS_LIST_H */
|