first commit
This commit is contained in:
commit
bca1a00545
161 changed files with 15899 additions and 0 deletions
26
MyDocument.h
Normal file
26
MyDocument.h
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
//
|
||||
// MyDocument.h
|
||||
// Twittia 2
|
||||
//
|
||||
// Created by Jeena on 16.04.10.
|
||||
// Licence: BSD (see attached LICENCE.txt file).
|
||||
//
|
||||
|
||||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
|
||||
|
||||
@interface MyDocument : NSDocument
|
||||
{
|
||||
IBOutlet NSTextField *textField;
|
||||
IBOutlet NSTextField *counter;
|
||||
NSString *inReplyTostatusId;
|
||||
}
|
||||
|
||||
@property (nonatomic, retain) IBOutlet NSTextField *textField;
|
||||
@property (nonatomic, retain) IBOutlet NSTextField *counter;
|
||||
|
||||
- (IBAction)sendTweet:(NSControl *)control;
|
||||
- (void)inReplyTo:(NSString *)userName statusId:(NSString *)statusId;
|
||||
|
||||
@end
|
||||
Reference in a new issue