mirror of
https://github.com/ytsodacan/Faucet.git
synced 2026-04-23 07:28:07 +00:00
18 lines
262 B
C++
18 lines
262 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
#include "stdafx.h"
|
|
#include "Language.h"
|
|
|
|
class I18n
|
|
{
|
|
private:
|
|
static Language *lang;
|
|
|
|
public:
|
|
template<typename ...Args>
|
|
static wstring get(Args... args)
|
|
{
|
|
return lang->getElement(std::forward<Args>(args)...);
|
|
}
|
|
}; |