iPlug2 - C++ Audio Plug-in Framework
Loading...
Searching...
No Matches
AppDelegate.m
1 /*
2 ==============================================================================
3
4 This file is part of the iPlug 2 library. Copyright (C) the iPlug 2 developers.
5
6 See LICENSE.txt for more info.
7
8 ==============================================================================
9*/
10
11#import "AppDelegate.h"
12
13@interface AppDelegate ()
14@end
15
16@implementation AppDelegate
17
18- (BOOL) application: (UIApplication*) application didFinishLaunchingWithOptions:(NSDictionary*) launchOptions
19{
20 return YES;
21}
22
23- (void) applicationWillResignActive: (UIApplication*) application
24{
25}
26
27- (void) applicationDidEnterBackground: (UIApplication*) application
28{
29}
30
31- (void) applicationWillEnterForeground: (UIApplication*) application
32{
33}
34
35- (void) applicationDidBecomeActive: (UIApplication*) application
36{
37}
38
39- (void) applicationWillTerminate: (UIApplication*) application
40{
41}
42
43@end