Play-/Source/ui_android/com_virtualapplications_play_Bootable.h
2019-01-15 11:50:07 +00:00

25 lines
434 B
C++

#include <jni.h>
#include "Singleton.h"
namespace com
{
namespace virtualapplications
{
namespace play
{
class Bootable_ClassInfo : public CSingleton<Bootable_ClassInfo>
{
public:
void PrepareClassInfo();
jclass clazz = NULL;
jmethodID init = NULL;
jfieldID path = NULL;
jfieldID discId = NULL;
jfieldID title = NULL;
jfieldID coverUrl = NULL;
jfieldID overview = NULL;
};
}
}
}