summaryrefslogtreecommitdiff
path: root/demo/gclue-service-agent.h
blob: a1944a7f0bbf66e7109b57f150ef3fb866a53be6 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* vim: set et ts=8 sw=8: */
/* gclue-service-agent.h
 *
 * Copyright 2013 Red Hat, Inc.
 *
 * Geoclue is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 * Geoclue is distributed in the hope that it will be useful, but WITHOUT ANY
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License along
 * with Geoclue; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
 */

#ifndef GCLUE_SERVICE_AGENT_H
#define GCLUE_SERVICE_AGENT_H

#include <glib-object.h>
#include "geoclue-agent-interface.h"

G_BEGIN_DECLS

#define GCLUE_TYPE_SERVICE_AGENT            (gclue_service_agent_get_type())
#define GCLUE_SERVICE_AGENT(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCLUE_TYPE_SERVICE_AGENT, GClueServiceAgent))
#define GCLUE_SERVICE_AGENT_CONST(obj)      (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCLUE_TYPE_SERVICE_AGENT, GClueServiceAgent const))
#define GCLUE_SERVICE_AGENT_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass),  GCLUE_TYPE_SERVICE_AGENT, GClueServiceAgentClass))
#define GCLUE_IS_SERVICE_AGENT(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GCLUE_TYPE_SERVICE_AGENT))
#define GCLUE_IS_SERVICE_AGENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),  GCLUE_TYPE_SERVICE_AGENT))
#define GCLUE_SERVICE_AGENT_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),  GCLUE_TYPE_SERVICE_AGENT, GClueServiceAgentClass))

typedef struct _GClueServiceAgent        GClueServiceAgent;
typedef struct _GClueServiceAgentClass   GClueServiceAgentClass;
typedef struct _GClueServiceAgentPrivate GClueServiceAgentPrivate;

struct _GClueServiceAgent
{
        GClueAgentSkeleton parent;

        /*< private >*/
        GClueServiceAgentPrivate *priv;
};

struct _GClueServiceAgentClass
{
        GClueAgentSkeletonClass parent_class;
};

GType               gclue_service_agent_get_type (void) G_GNUC_CONST;
GClueServiceAgent * gclue_service_agent_new      (GDBusConnection *connection);

G_END_DECLS

#endif /* GCLUE_SERVICE_AGENT_H */