add featue_type_to_osm files

Signed-off-by: map-per <map-per@gmx.de>
This commit is contained in:
map-per
2025-12-09 13:54:59 +01:00
parent f1cf844986
commit 8d3c4ecfd5
4 changed files with 28 additions and 0 deletions

View File

@@ -18,6 +18,8 @@ set(SRC
edits_migration.hpp
feature_matcher.cpp
feature_matcher.hpp
feature_type_to_osm.cpp
feature_type_to_osm.hpp
new_feature_categories.cpp
new_feature_categories.hpp
opening_hours_ui.cpp

View File

@@ -0,0 +1,11 @@
#include "editor/feature_type_to_osm.hpp"
#include "base/logging.hpp"
namespace OSM
{
void OSM::FeatureTypeToOSM::typeToOSM(uint32_t type)
{
LOG(LDEBUG, ("Computing typeToOSM for Type: ", type, "/ "));
}
} // namespace osm

View File

@@ -0,0 +1,13 @@
#pragma once
#include <cstdint>
namespace OSM
{
class FeatureTypeToOSM
{
public:
static void typeToOSM(uint32_t type);
};
} // namespace osm

View File

@@ -1,4 +1,6 @@
#include "editor/xml_feature.hpp"
#include "editor/feature_type_to_osm.hpp"
#include "editor/keys_to_remove.hpp"
#include "indexer/classificator.hpp"