summaryrefslogtreecommitdiff
path: root/libgupnp/gupnp-device.h
blob: 704f039d405a4a068d0a2a7281f4b62711034521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * Copyright (C) 2007 OpenedHand Ltd.
 *
 * Author: Jorn Baayen <jorn@openedhand.com>
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#ifndef GUPNP_DEVICE_H
#define GUPNP_DEVICE_H

#include "gupnp-device-info.h"

G_BEGIN_DECLS

#define GUPNP_TYPE_DEVICE (gupnp_device_get_type ())

G_DECLARE_DERIVABLE_TYPE (GUPnPDevice,
                          gupnp_device,
                          GUPNP,
                          DEVICE,
                          GUPnPDeviceInfo)

struct _GUPnPDeviceClass {
        GUPnPDeviceInfoClass parent_class;

        /* future padding */
        void (* _gupnp_reserved1) (void);
        void (* _gupnp_reserved2) (void);
        void (* _gupnp_reserved3) (void);
        void (* _gupnp_reserved4) (void);
};

G_END_DECLS

#endif /* GUPNP_DEVICE_H */