Added latlon.hpp for coordinates routine.

This commit is contained in:
vng 2013-08-08 00:15:05 +03:00
parent 650b758425
commit af68e7ceb6
2 changed files with 11 additions and 0 deletions

1
env/env.pro vendored
View file

@ -21,6 +21,7 @@ HEADERS += \
thread.hpp \
message_std.hpp \
reader.hpp \
latlon.hpp \
SOURCES += \
assert.cpp \

10
env/latlon.hpp vendored Normal file
View file

@ -0,0 +1,10 @@
#pragma once
namespace ll
{
inline bool ValidLat(double lat) { return -90.0 <= lat && lat <= 90.0; }
inline bool ValidLon(double lon) { return -180.0 <= lon && lon <= 180.0; }
}