BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
NoTranslator.h
1 #pragma once
2 
3 #include "l10n/Translator.h"
4 
5 namespace BeeeOn {
6 
10 class NoTranslator : public Translator {
11 public:
12  std::string formatImpl(
13  const std::string &key,
14  const std::vector<Poco::Dynamic::Var> &args) override;
15 };
16 
18 public:
20  const Locale &locale,
21  const std::string &name = "") override;
22 };
23 
24 }
Definition: Translator.h:112
Definition: NoTranslator.h:10
Translator * create(const Locale &locale, const std::string &name="") override
Definition: NoTranslator.cpp:26
Definition: NoTranslator.h:17
Definition: Locale.h:12
std::string formatImpl(const std::string &key, const std::vector< Poco::Dynamic::Var > &args) override
Definition: NoTranslator.cpp:7
Definition: Translator.h:14