kodi
InputCodingTableBasePY.h
1 /*
2  * Copyright (C) 2005-2024 Team Kodi
3  * This file is part of Kodi - https://kodi.tv
4  *
5  * SPDX-License-Identifier: GPL-2.0-or-later
6  * See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include "InputCodingTable.h"
12 
13 #include <map>
14 #include <string>
15 #include <vector>
16 
18 {
19 public:
21  ~CInputCodingTableBasePY() override = default;
22 
23  bool GetWordListPage(const std::string& strCode, bool isFirstPage) override;
24  std::vector<std::wstring> GetResponse(int) override;
25 
26 private:
27  std::vector<std::wstring> m_words;
28 };
Definition: InputCodingTableBasePY.h:17
Definition: InputCodingTable.h:15