gsdx: Add template version of GetConfig

It allows static_casts to be avoided for enum classes
This commit is contained in:
willkuer 2016-12-05 22:44:17 +01:00 committed by Gregory Hainaut
parent 85ddf69042
commit 439472d4f8
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,8 @@ public:
void SetConfig(const char* entry, const char* value);
void SetConfig(const char* entry, int value);
// Avoid issue with overloading
template<typename T>
T GetConfigT(const char* entry) { return static_cast<T>(GetConfigI(entry)); }
int GetConfigI(const char* entry);
bool GetConfigB(const char* entry);
string GetConfigS(const char* entry);