kodi
JNIXBMCURIUtils.h
1 /*
2  * Copyright (C) 2020 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 <androidjni/JNIBase.h>
12 
13 namespace jni
14 {
15 
16  class CJNIXBMCURIUtils : public CJNIBase
17  {
18  public:
19  CJNIXBMCURIUtils(const jni::jhobject &object) : CJNIBase(object) {}
20 
21  static void RegisterNatives(JNIEnv* env);
22 
23 
24  protected:
25  ~CJNIXBMCURIUtils() override = default;
26 
27  static jstring _substitutePath(JNIEnv* env, jobject thiz, jstring path);
28 
29  };
30 
31 }
Definition: JNIMainActivity.h:15
Definition: JNIXBMCURIUtils.h:16