diff options
Diffstat (limited to 'src/android/jni/URI.h')
-rw-r--r-- | src/android/jni/URI.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/android/jni/URI.h b/src/android/jni/URI.h new file mode 100644 index 0000000000..98d30318aa --- /dev/null +++ b/src/android/jni/URI.h @@ -0,0 +1,38 @@ +#pragma once +/* + * Copyright (C) 2013 Team XBMC + * http://xbmc.org + * + * This Program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2, or (at your option) + * any later version. + * + * This Program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with XBMC; see the file COPYING. If not, see + * <http://www.gnu.org/licenses/>. + * + */ + +#include "JNIBase.h" + +class CJNIURI : public CJNIBase +{ +public: + CJNIURI(const jni::jhobject &uri) : CJNIBase(uri) {}; + ~CJNIURI() {}; + + std::string getScheme() const; + std::string toString() const; + std::string getLastPathSegment() const; + std::string getPath() const; + static CJNIURI parse(std::string uriString); + +private: + CJNIURI(); +}; |