2015-01-07 17:50:15 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "PlayerMacros.h"
|
2015-11-25 21:52:44 +08:00
|
|
|
#include "SimulatorExport.h"
|
2015-01-07 17:50:15 +08:00
|
|
|
|
|
|
|
PLAYER_NS_BEGIN
|
|
|
|
|
2015-11-25 21:52:44 +08:00
|
|
|
class CC_LIBSIM_DLL DeviceEx
|
2015-01-07 17:50:15 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static DeviceEx *getInstance();
|
|
|
|
|
|
|
|
std::string getCurrentUILangName();
|
|
|
|
std::string getUserGUID();
|
|
|
|
|
|
|
|
private:
|
|
|
|
DeviceEx();
|
|
|
|
void init();
|
|
|
|
void makeUILangName();
|
|
|
|
std::string makeUserGUID();
|
|
|
|
|
|
|
|
std::string _uiLangName;
|
|
|
|
std::string _userGUID;
|
|
|
|
};
|
|
|
|
|
|
|
|
PLAYER_NS_END
|