diff --git a/libs/editor/CMakeLists.txt b/libs/editor/CMakeLists.txt index 33f94d1e0..8c5c84a5a 100644 --- a/libs/editor/CMakeLists.txt +++ b/libs/editor/CMakeLists.txt @@ -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 diff --git a/libs/editor/feature_type_to_osm.cpp b/libs/editor/feature_type_to_osm.cpp new file mode 100644 index 000000000..06bac08a9 --- /dev/null +++ b/libs/editor/feature_type_to_osm.cpp @@ -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 \ No newline at end of file diff --git a/libs/editor/feature_type_to_osm.hpp b/libs/editor/feature_type_to_osm.hpp new file mode 100644 index 000000000..773188b65 --- /dev/null +++ b/libs/editor/feature_type_to_osm.hpp @@ -0,0 +1,13 @@ +#pragma once + +#include + +namespace OSM +{ +class FeatureTypeToOSM +{ + +public: + static void typeToOSM(uint32_t type); +}; +} // namespace osm \ No newline at end of file diff --git a/libs/editor/xml_feature.cpp b/libs/editor/xml_feature.cpp index 37b856e88..16b1cb1da 100644 --- a/libs/editor/xml_feature.cpp +++ b/libs/editor/xml_feature.cpp @@ -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"