kodi
AddonPythonInvoker.h
1 /*
2  * Copyright (C) 2013-2018 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 "interfaces/python/PythonInvoker.h"
12 
14 {
15 public:
16  explicit CAddonPythonInvoker(ILanguageInvocationHandler *invocationHandler);
17  ~CAddonPythonInvoker() override;
18 
19  static void GlobalInitializeModules(void);
20 
21 protected:
22  // overrides of CPythonInvoker
23  const char* getInitializationScript() const override;
24 };
Definition: PythonInvoker.h:23
Definition: ILanguageInvocationHandler.h:13
Definition: AddonPythonInvoker.h:13