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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2015-12-04 15:49:43 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:03:53 +0300
commit48d5b57ece38222e1f06045452e4270a3897d804 (patch)
treee807c9cae6a31e44a482e09877464df941d63935 /qt/editor_dialog.hpp
parenta6c6408b05345868bf068b8cec56570dd3f5c2b8 (diff)
[qt] EditDialog.
Diffstat (limited to 'qt/editor_dialog.hpp')
-rw-r--r--qt/editor_dialog.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/qt/editor_dialog.hpp b/qt/editor_dialog.hpp
index f17fd5e14b..a383851068 100644
--- a/qt/editor_dialog.hpp
+++ b/qt/editor_dialog.hpp
@@ -1,5 +1,9 @@
#pragma once
+#include "indexer/feature_meta.hpp"
+
+#include "coding/multilang_utf8_string.hpp"
+
#include "std/string.hpp"
#include <QtWidgets/QDialog>
@@ -12,4 +16,6 @@ class EditorDialog : public QDialog
Q_OBJECT
public:
EditorDialog(QWidget * parent, FeatureType const & feature);
+ StringUtf8Multilang GetEditedNames() const;
+ feature::Metadata GetEditedMetadata() const;
};