11 lines
174 B
C++
11 lines
174 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "geometry/point2d.hpp"
|
||
|
|
|
||
|
|
#include <vector>
|
||
|
|
|
||
|
|
namespace generator
|
||
|
|
{
|
||
|
|
double AreaOnEarth(std::vector<m2::PointD> const & points);
|
||
|
|
} // namespace generator
|