mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 04:53:36 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -10,41 +10,22 @@ namespace generator
|
||||
class CountryFinalProcessor : public FinalProcessorIntermediateMwmInterface
|
||||
{
|
||||
public:
|
||||
CountryFinalProcessor(AffiliationInterfacePtr affiliations,
|
||||
std::string const & temporaryMwmPath, size_t threadsCount);
|
||||
CountryFinalProcessor(AffiliationInterfacePtr affiliations, std::string const & temporaryMwmPath,
|
||||
size_t threadsCount);
|
||||
|
||||
void SetCoastlines(std::string const & coastlineGeomFilename,
|
||||
std::string const & worldCoastsFilename)
|
||||
void SetCoastlines(std::string const & coastlineGeomFilename, std::string const & worldCoastsFilename)
|
||||
{
|
||||
m_coastlineGeomFilename = coastlineGeomFilename;
|
||||
m_worldCoastsFilename = worldCoastsFilename;
|
||||
}
|
||||
void SetFakeNodes(std::string const & filename)
|
||||
{
|
||||
m_fakeNodesFilename = filename;
|
||||
}
|
||||
void SetMiniRoundabouts(std::string const & filename)
|
||||
{
|
||||
m_miniRoundaboutsFilename = filename;
|
||||
}
|
||||
void SetAddrInterpolation(std::string const & filename)
|
||||
{
|
||||
m_addrInterpolFilename = filename;
|
||||
}
|
||||
void SetFakeNodes(std::string const & filename) { m_fakeNodesFilename = filename; }
|
||||
void SetMiniRoundabouts(std::string const & filename) { m_miniRoundaboutsFilename = filename; }
|
||||
void SetAddrInterpolation(std::string const & filename) { m_addrInterpolFilename = filename; }
|
||||
|
||||
void SetIsolinesDir(std::string const & dir)
|
||||
{
|
||||
m_isolinesPath = dir;
|
||||
}
|
||||
void SetAddressesDir(std::string const & dir)
|
||||
{
|
||||
m_addressPath = dir;
|
||||
}
|
||||
void SetIsolinesDir(std::string const & dir) { m_isolinesPath = dir; }
|
||||
void SetAddressesDir(std::string const & dir) { m_addressPath = dir; }
|
||||
|
||||
void SetCityBoundariesFiles(std::string const & collectorFile)
|
||||
{
|
||||
m_boundariesCollectorFile = collectorFile;
|
||||
}
|
||||
void SetCityBoundariesFiles(std::string const & collectorFile) { m_boundariesCollectorFile = collectorFile; }
|
||||
|
||||
// FinalProcessorIntermediateMwmInterface overrides:
|
||||
void Process() override;
|
||||
@@ -52,14 +33,14 @@ public:
|
||||
void ProcessBuildingParts();
|
||||
|
||||
private:
|
||||
//void Order();
|
||||
// void Order();
|
||||
void ProcessCoastline();
|
||||
void ProcessRoundabouts();
|
||||
void AddFakeNodes();
|
||||
void AddIsolines();
|
||||
void AddAddresses();
|
||||
void DropProhibitedSpeedCameras();
|
||||
//void Finish();
|
||||
// void Finish();
|
||||
|
||||
bool IsCountry(std::string const & filename);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user