1
/*
2
 * Copyright (C) 2011-2012 Jiri Techet <techet@gmail.com>
3
 *
4
 * This library is free software; you can redistribute it and/or
5
 * modify it under the terms of the GNU Lesser General Public
6
 * License as published by the Free Software Foundation; either
7
 * version 2.1 of the License, or (at your option) any later version.
8
 *
9
 * This library is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 * Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public
15
 * License along with this library; if not, write to the Free Software
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
 */
18
19
#if !defined (__CHAMPLAIN_CHAMPLAIN_H_INSIDE__) && !defined (CHAMPLAIN_COMPILATION)
20
#error "Only <champlain/champlain.h> can be included directly."
21
#endif
22
23
#ifndef CHAMPLAIN_COORDINATE_H
24
#define CHAMPLAIN_COORDINATE_H
25
26
#include <champlain/champlain-defines.h>
27
#include <champlain/champlain-location.h>
28
29
#include <glib-object.h>
30
31
G_BEGIN_DECLS
32
33
#define CHAMPLAIN_TYPE_COORDINATE champlain_coordinate_get_type ()
34
35
#define CHAMPLAIN_COORDINATE(obj) \
36
  (G_TYPE_CHECK_INSTANCE_CAST ((obj), CHAMPLAIN_TYPE_COORDINATE, ChamplainCoordinate))
37
38
#define CHAMPLAIN_COORDINATE_CLASS(klass) \
39
  (G_TYPE_CHECK_CLASS_CAST ((klass), CHAMPLAIN_TYPE_COORDINATE, ChamplainCoordinateClass))
40
41
#define CHAMPLAIN_IS_COORDINATE(obj) \
42
  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CHAMPLAIN_TYPE_COORDINATE))
43
44
#define CHAMPLAIN_IS_COORDINATE_CLASS(klass) \
45
  (G_TYPE_CHECK_CLASS_TYPE ((klass), CHAMPLAIN_TYPE_COORDINATE))
46
47
#define CHAMPLAIN_COORDINATE_GET_CLASS(obj) \
48
  (G_TYPE_INSTANCE_GET_CLASS ((obj), CHAMPLAIN_TYPE_COORDINATE, ChamplainCoordinateClass))
49
50
typedef struct _ChamplainCoordinatePrivate ChamplainCoordinatePrivate;
51
52
typedef struct _ChamplainCoordinate ChamplainCoordinate;
53
typedef struct _ChamplainCoordinateClass ChamplainCoordinateClass;
54
55
56
/**
57
 * ChamplainCoordinate:
58
 *
59
 * The #ChamplainCoordinate structure contains only private data
60
 * and should be accessed using the provided API
61
 *
62
 * Since: 0.10
63
 */
64
struct _ChamplainCoordinate
65
{
66
  GInitiallyUnowned parent;
67
68
  ChamplainCoordinatePrivate *priv;
69
};
70
71
struct _ChamplainCoordinateClass
72
{
73
  GInitiallyUnownedClass parent_class;
74
};
75
76
GType champlain_coordinate_get_type (void);
77
78
ChamplainCoordinate *champlain_coordinate_new (void);
79
80
ChamplainCoordinate *champlain_coordinate_new_full (gdouble latitude,
81
    gdouble longitude);
82
83
G_END_DECLS
84
85
#endif