Improve table views, fix for missing Unicode support on iOS 5.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/performance/trunk@36730 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
thebeing 2013-06-19 02:37:23 +00:00
parent 261b396b69
commit 8ac96ca668
3 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,7 @@
//
// Prefix header for all source files of the 'iOSPerformance' target in the 'iOSPerformance' project
//
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#endif

View file

@ -0,0 +1,13 @@
//
// iOSPerformance.h
// iOSPerformance
//
// Created by Niels Grewe on 17.05.13.
//
//
#import <Foundation/Foundation.h>
@interface iOSPerformance : NSObject
@end

View file

@ -0,0 +1,13 @@
//
// iOSPerformance.m
// iOSPerformance
//
// Created by Niels Grewe on 17.05.13.
//
//
#import "iOSPerformance.h"
@implementation iOSPerformance
@end