[PVR][Estuary] Timer settings dialog: Show client name in timer type selection dialog...
[xbmc.git] / xbmc / utils / Base64.h
blob4b645eefcfa7338ee8b72732234986c39c1d2a72
1 /*
2 * Copyright (C) 2011-2018 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>
13 class Base64
15 public:
16 static void Encode(const char* input, unsigned int length, std::string &output);
17 static std::string Encode(const char* input, unsigned int length);
18 static void Encode(const std::string &input, std::string &output);
19 static std::string Encode(const std::string &input);
20 static void Decode(const char* input, unsigned int length, std::string &output);
21 static std::string Decode(const char* input, unsigned int length);
22 static void Decode(const std::string &input, std::string &output);
23 static std::string Decode(const std::string &input);
25 private:
26 static const std::string m_characters;