dRonin  adbada4
dRonin GCS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Groups Pages
pointlatlng.cpp
Go to the documentation of this file.
1 
13 /*
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 3 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
21 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 * for more details.
23 *
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, see <http://www.gnu.org/licenses/>
26 */
27 #include "pointlatlng.h"
28 
29 
30 namespace internals {
31 PointLatLng PointLatLng::Empty=PointLatLng();
32 PointLatLng::PointLatLng():lat(0),lng(0),empty(true)
33 {
34 
35 }
36 
37 bool operator==(PointLatLng const& lhs,PointLatLng const& rhs)
38 {
39  return ((lhs.Lng() == rhs.Lng()) && (lhs.Lat() == rhs.Lat()));
40 }
41 
42 bool operator!=(PointLatLng const& left, PointLatLng const& right)
43 {
44  return !(left == right);
45 }
47 {
48  return PointLatLng::Add(pt, sz);
49 }
50 
52 {
53  return PointLatLng::Subtract(pt, sz);
54 }
55 }
static PointLatLng Subtract(PointLatLng const &pt, SizeLatLng const &sz)
Definition: pointlatlng.h:91
PointLatLng operator+(PointLatLng pt, SizeLatLng sz)
Definition: pointlatlng.cpp:46
double Lng() const
Definition: pointlatlng.h:76
double Lat() const
Definition: pointlatlng.h:64
static PointLatLng Empty
Definition: pointlatlng.h:50
PointLatLng operator-(PointLatLng pt, SizeLatLng sz)
Definition: pointlatlng.cpp:51
bool operator==(LoadTask const &lhs, LoadTask const &rhs)
Definition: loadtask.cpp:31
static PointLatLng Add(PointLatLng const &pt, SizeLatLng const &sz)
Definition: pointlatlng.h:86
bool operator!=(PointLatLng const &left, PointLatLng const &right)
Definition: pointlatlng.cpp:42