10 lines
210 B
C++
10 lines
210 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace search
|
||
|
|
{
|
||
|
|
// Parses input query for most input coordinates cases.
|
||
|
|
bool MatchLatLonDegree(std::string const & query, double & lat, double & lon);
|
||
|
|
} // namespace search
|