mved files to prepare for Linux version
This commit is contained in:
parent
5687a30077
commit
248d8fa1b6
175 changed files with 12602 additions and 0 deletions
23
Mac/TweetModel.m
Normal file
23
Mac/TweetModel.m
Normal file
|
@ -0,0 +1,23 @@
|
|||
//
|
||||
// TweetModel.m
|
||||
// Tentia
|
||||
//
|
||||
// Created by Jeena on 10.01.11.
|
||||
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#import "TweetModel.h"
|
||||
|
||||
|
||||
@implementation TweetModel
|
||||
|
||||
@synthesize text, inReplyTostatusId, inReplyToEntity;
|
||||
|
||||
- (void)dealloc {
|
||||
[text release];
|
||||
[inReplyTostatusId release];
|
||||
[inReplyToEntity release];
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
@end
|
Reference in a new issue