Updated to TBB 4.4 update 4

This commit is contained in:
Wenzel Jakob
2016-05-12 12:28:09 +01:00
parent 4fa22d5ace
commit 92a3dcd0a2
1374 changed files with 52186 additions and 31785 deletions
@@ -1,5 +1,5 @@
/*
Copyright 2005-2014 Intel Corporation. All Rights Reserved.
Copyright 2005-2016 Intel Corporation. All Rights Reserved.
This file is part of Threading Building Blocks. Threading Building Blocks is free software;
you can redistribute it and/or modify it under the terms of the GNU General Public License
@@ -22,6 +22,20 @@
// Created by Xcode* 4.3.2
//
#import <Foundation/Foundation.h>
#if TARGET_OS_IPHONE
#import <UIKit/UIKit.h>
@interface tbbAppDelegate : UIResponder <UIApplicationDelegate>
@property (strong, nonatomic) UIWindow *window;
@end
#elif TARGET_OS_MAC
#import <Cocoa/Cocoa.h>
@interface tbbAppDelegate : NSObject <NSApplicationDelegate>{
@@ -33,3 +47,5 @@
- (BOOL) applicationShouldTerminateAfterLastWindowClosed:(NSApplication *) sender;
@end
#endif