Copy of rackspace-ios version 2.1.1
[pithos-ios] / Classes / TextViewCell.h
1 //
2 //  TextViewCell.h
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 10/11/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 #import <UIKit/UIKit.h>
10
11
12 @interface TextViewCell : UITableViewCell {
13     UITextView *textView;
14 }
15
16 @property (nonatomic, retain) UITextView *textView;
17
18 @end