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:
Diffstat (limited to 'search/search_quality/assessment_tool/languages_list.hpp')
-rw-r--r--search/search_quality/assessment_tool/languages_list.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/search/search_quality/assessment_tool/languages_list.hpp b/search/search_quality/assessment_tool/languages_list.hpp
new file mode 100644
index 0000000000..c717c0aff4
--- /dev/null
+++ b/search/search_quality/assessment_tool/languages_list.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <string>
+
+#include <QtWidgets/QComboBox>
+
+class QWidget;
+
+class LanguagesList : public QComboBox
+{
+public:
+ explicit LanguagesList(QWidget * parent);
+
+ void Select(std::string const & lang);
+};