Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
27
generator/final_processor_coastline.hpp
Normal file
27
generator/final_processor_coastline.hpp
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#pragma once
|
||||
|
||||
#include "generator/coastlines_generator.hpp"
|
||||
#include "generator/final_processor_interface.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace generator
|
||||
{
|
||||
class CoastlineFinalProcessor : public FinalProcessorIntermediateMwmInterface
|
||||
{
|
||||
public:
|
||||
CoastlineFinalProcessor(std::string const & filename, size_t threadsCount);
|
||||
|
||||
void SetCoastlinesFilenames(std::string const & geomFilename, std::string const & rawGeomFilename);
|
||||
|
||||
// FinalProcessorIntermediateMwmInterface overrides:
|
||||
void Process() override;
|
||||
|
||||
private:
|
||||
std::string m_filename;
|
||||
size_t m_threadsCount;
|
||||
std::string m_coastlineGeomFilename;
|
||||
std::string m_coastlineRawGeomFilename;
|
||||
CoastlineFeaturesGenerator m_generator;
|
||||
};
|
||||
} // namespace generator
|
||||
Loading…
Add table
Add a link
Reference in a new issue