mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-25 07:13:53 +00:00
@@ -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
|
||||
|
||||
11
libs/editor/feature_type_to_osm.cpp
Normal file
11
libs/editor/feature_type_to_osm.cpp
Normal 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
|
||||
13
libs/editor/feature_type_to_osm.hpp
Normal file
13
libs/editor/feature_type_to_osm.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace OSM
|
||||
{
|
||||
class FeatureTypeToOSM
|
||||
{
|
||||
|
||||
public:
|
||||
static void typeToOSM(uint32_t type);
|
||||
};
|
||||
} // namespace osm
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user