47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
@end
namespace ObjQt {
static OF_INLINE QtGUIApplication *
toOF(QGuiApplication *qGuiApplication)
{
return [[[QtGUIApplication alloc]
initWithQGuiApplication: qGuiApplication] autorelease];
}
static OF_INLINE QGuiApplication *
toQt(QtGUIApplication *GUIApplication)
{
|
>
>
>
|
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
@end
namespace ObjQt {
static OF_INLINE QtGUIApplication *
toOF(QGuiApplication *qGuiApplication)
{
if (qGuiApplication == NULL)
return nil;
return [[[QtGUIApplication alloc]
initWithQGuiApplication: qGuiApplication] autorelease];
}
static OF_INLINE QGuiApplication *
toQt(QtGUIApplication *GUIApplication)
{
|