BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
LocaleManager.h
1 #pragma once
2 
3 #include <string>
4 #include <vector>
5 
6 #include "l10n/Locale.h"
7 
8 namespace BeeeOn {
9 
11 public:
12  typedef Poco::SharedPtr<LocaleManager> Ptr;
13 
14  virtual ~LocaleManager();
15 
16  virtual Locale parse(const std::string &input) = 0;
17  virtual Locale chooseBest(const std::vector<std::string> &input) = 0;
18 };
19 
20 }
Definition: Locale.h:12
Definition: LocaleManager.h:10