Merge pull request #26293 from the-black-eagle/mka_read_more_tags
[xbmc.git] / xbmc / input / actions / ActionTranslator.h
blob18e4f5769df13c4b8948109df2ffcb0287016ee6
1 /*
2 * Copyright (C) 2017-2024 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include <string>
12 #include <vector>
14 namespace KODI
16 namespace ACTION
18 /*!
19 * \ingroup action
21 class CActionTranslator
23 public:
24 static void GetActions(std::vector<std::string>& actionList);
25 static bool IsAnalog(unsigned int actionId);
26 static bool TranslateString(std::string strAction, unsigned int& actionId);
28 } // namespace ACTION
29 } // namespace KODI