co-maps/libs/editor/editable_data_source.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
263 B
C++
Raw Permalink Normal View History

2025-11-22 13:58:55 +01:00
#pragma once
#include "editor/editable_feature_source.hpp"
#include "indexer/data_source.hpp"
#include <memory>
class EditableDataSource : public DataSource
{
public:
EditableDataSource() : DataSource(std::make_unique<EditableFeatureSourceFactory>()) {}
};