mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 06:39:46 -06:00
Common/IniFile: Move interface into Common namespace
Gets this out of the global namespace and into the Common namespace
This commit is contained in:
@ -4,13 +4,16 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
#include <vector>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/IniFile.h"
|
||||
#include "InputCommon/DynamicInputTextures/DITData.h"
|
||||
|
||||
namespace Common
|
||||
{
|
||||
class IniFile;
|
||||
}
|
||||
|
||||
namespace InputCommon::DynamicInputTextures
|
||||
{
|
||||
class Configuration
|
||||
@ -18,11 +21,12 @@ class Configuration
|
||||
public:
|
||||
explicit Configuration(const std::string& json_file);
|
||||
~Configuration();
|
||||
bool GenerateTextures(const IniFile& file,
|
||||
bool GenerateTextures(const Common::IniFile& file,
|
||||
const std::vector<std::string>& controller_names) const;
|
||||
|
||||
private:
|
||||
bool GenerateTexture(const IniFile& file, const std::vector<std::string>& controller_names,
|
||||
bool GenerateTexture(const Common::IniFile& file,
|
||||
const std::vector<std::string>& controller_names,
|
||||
const Data& texture_data) const;
|
||||
|
||||
std::vector<Data> m_dynamic_input_textures;
|
||||
|
Reference in New Issue
Block a user