Welcome to mirror list, hosted at ThFree Co, Russian Federation.

editable_data_source.hpp « editor - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a01ef0c3f78ff449f242b67cba8a8df7f22d968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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>()) {}
};