~saltmakrell/launchpad/fixtiles-osm-gps-map

« back to all changes in this revision

Viewing changes to src/osm-gps-map-track.c

  • Committer: Package Import Robot
  • Author(s): Ilya Barygin
  • Date: 2011-12-31 11:16:10 UTC
  • mfrom: (1.1.6) (0.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20111231111610-zzpv0eoqpcl2iyz3
Tags: 0.7.3-1ubuntu1
* Merge from Debian testing, remaining changes:
  - debian/libosmgpsmap-dev.install: Don't install la-file (Policy 10.2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* osm-gps-map-track.c */
 
1
/* vim:set et sw=4 ts=4 */
 
2
/*
 
3
 * Copyright (C) 2010 John Stowers <john.stowers@gmail.com>
 
4
 *
 
5
 * This is free software: you can redistribute it and/or modify it
 
6
 * under the terms of the GNU General Public License
 
7
 * as published by the Free Software Foundation; version 2.
 
8
 *
 
9
 * This program 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
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 
16
 */
 
17
 
 
18
/**
 
19
 * SECTION:osm-gps-map-track
 
20
 * @short_description: A list of GPS points
 
21
 * @stability: Stable
 
22
 * @include: osm-gps-map.h
 
23
 *
 
24
 * #OsmGpsMapTrack stores multiple #OsmGpsMapPoint objects, i.e. a track, and
 
25
 * describes how such a track should be drawn on the map
 
26
 * (see osm_gps_map_track_add()), including its colour, width, etc.
 
27
 **/
2
28
 
3
29
#include <gdk/gdk.h>
4
30