AppController.h#
↰ Parent directory (EntryPoint\UIApplicationMain
)
UIApplication delegate functioning as the application controller for UIKit implementation of Shell(iOS)
Includes#
Foundation/NSTimer.h
PVRCore/commandline/CommandLine.h
PVRShell/StateMachine.h
UIKit/UIApplication.h
Classes#
Source Code#
#pragma once
#include "PVRShell/StateMachine.h"
#include "PVRCore/commandline/CommandLine.h"
#import <UIKit/UIApplication.h>
#import <Foundation/NSTimer.h>
@interface AppController : NSObject<UIApplicationDelegate>
{
NSTimer* mainLoopTimer;
pvr::platform::StateMachine* stateMachine;
pvr::platform::CommandLineParser commandLine;
}
@end