From 8e22bf07f2dbfea67bf7f05c2c863a811939da2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ca=C3=B1as=20Vargas?= Date: Wed, 18 Dec 2019 22:31:49 +0100 Subject: [PATCH] Version19.95.2 --- swad_map.c | 1 + swad_map.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 swad_map.c create mode 100644 swad_map.h diff --git a/swad_map.c b/swad_map.c new file mode 100644 index 00000000..37a28668 --- /dev/null +++ b/swad_map.c @@ -0,0 +1 @@ +// swad_map.c: maps diff --git a/swad_map.h b/swad_map.h new file mode 100644 index 00000000..fa9cad3b --- /dev/null +++ b/swad_map.h @@ -0,0 +1,45 @@ +// swad_map.h: maps + +#ifndef _SWAD_MAP +#define _SWAD_MAP +/* + SWAD (Shared Workspace At a Distance), + is a web platform developed at the University of Granada (Spain), + and used to support university teaching. + + This file is part of SWAD core. + Copyright (C) 1999-2019 Antonio Caņas Vargas + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as + published by the Free Software Foundation, either version 3 of the + License, or (at your option) any later version. + + This program 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 Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ +/*****************************************************************************/ +/********************************* Headers ***********************************/ +/*****************************************************************************/ + +/*****************************************************************************/ +/************************** Public types and constants ***********************/ +/*****************************************************************************/ + +struct Coordinates + { + double Latitude; + double Longitude; + double Altitude; + }; + +/*****************************************************************************/ +/****************************** Public prototypes ****************************/ +/*****************************************************************************/ + +#endif