blob: e20048bf69ea749e76ffab0e4769bc33be2e3820 [file] [log] [blame]
Sauw Minga7487622010-03-30 11:42:51 +00001//
2// TestViewController.h
3// ipjsystest
4//
5// Created by Liong Sauw Ming on 3/20/10.
6// Copyright 2010 Teluu Inc. (http://www.teluu.com). All rights reserved.
7//
8
9#import <UIKit/UIKit.h>
10
11
12@interface TestViewController : UIViewController {
13 IBOutlet UITextView *testDesc;
14 IBOutlet UIButton *button1;
15 IBOutlet UIButton *button2;
16
17 NSInteger key;
18}
19
20@property (nonatomic, retain) IBOutlet UITextView *testDesc;
21@property (nonatomic, retain) IBOutlet UIButton *button1;
22@property (nonatomic, retain) IBOutlet UIButton *button2;
23@property (nonatomic) NSInteger key;
24
25@end