2e20c248f3
Removed include guard in SkTime_Unix.cpp, which the iOSSampleApp now uses. git-svn-id: http://skia.googlecode.com/svn/trunk@1820 2bbb7eff-a529-9590-31e7-b0007b416f81
20 lines
317 B
Objective-C
20 lines
317 B
Objective-C
//
|
|
// SkAlertPrompt.h
|
|
// iOSSampleApp
|
|
//
|
|
// Created by Yang Su on 7/6/11.
|
|
// Copyright 2011 Google Inc. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@interface SkAlertPrompt : UIAlertView {
|
|
UITextField *textField;
|
|
}
|
|
@property (nonatomic, retain) UITextField *textField;
|
|
|
|
- (NSString*)enteredText;
|
|
|
|
@end
|