Sha256: 6bcdaeefcfed122533cbfe0234bef8ba5547a1852b4b5f0b8b62edc23699a5c7
Contents?: true
Size: 406 Bytes
Versions: 24
Compression:
Stored size: 406 Bytes
Contents
#pragma once #include "common/ISystemInfo.h" extern "C" int rho_sys_get_screen_width(); extern "C" int rho_sys_get_screen_height(); namespace rho{ namespace common{ class CSystemInfoImpl : public ISystemInfo { public: String getPlatform() { return "Iphone"; } int getScreenWidth() { return rho_sys_get_screen_width(); } int getScreenHeight() { return rho_sys_get_screen_height(); } }; } }
Version data entries
24 entries across 24 versions & 1 rubygems