Skip to content

Commit

Permalink
MOD: remove useless forward declaration.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tang Qiao committed Sep 4, 2012
1 parent 5739a15 commit 729cf99
Show file tree
Hide file tree
Showing 20 changed files with 8 additions and 27 deletions.
Binary file removed .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ xcuserdata
profile
*.moved-aside
.svn
.DS_Store
3 changes: 1 addition & 2 deletions oschina/Comment.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
//

#import <Foundation/Foundation.h>
#import "Tool.h"
@class Tool;


@interface Comment : NSObject

Expand Down
1 change: 1 addition & 0 deletions oschina/Comment.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import "Comment.h"
#import "Tool.h"

@implementation Comment

Expand Down
2 changes: 1 addition & 1 deletion oschina/Message.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

#import <Foundation/Foundation.h>
#import "Tool.h"


@interface Message : NSObject

Expand Down
1 change: 1 addition & 0 deletions oschina/Message.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import "Message.h"
#import "Tool.h"

@implementation Message
@synthesize _id;
Expand Down
1 change: 0 additions & 1 deletion oschina/MessageSystemPub.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
#import <UIKit/UIKit.h>
#import "ApiError.h"
#import "MessageSystemView.h"
@class MessageSystemView;

@interface MessageSystemPub : UIViewController<UIActionSheetDelegate,UITextViewDelegate>
{
Expand Down
3 changes: 1 addition & 2 deletions oschina/MessageSystemView.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@
#import "ReplyMsgView.h"
#import "MsgCell.h"
#import "MessageSystemPub.h"

#import "Notification_CommentCount.h"
@class MessageSystemPub;
#import "IconDownloader.h"
#import "EGORefreshTableHeaderView.h"
#import "CommentRefer.h"

#define FetchCount 10;

@class MessageSystemPub;
@interface MessageSystemView : UIViewController<UITableViewDataSource, UITableViewDelegate,IconDownloaderDelegate,EGORefreshTableHeaderDelegate,UIActionSheetDelegate>
{
BOOL isLoading;
Expand Down
1 change: 0 additions & 1 deletion oschina/NewsBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

#import <UIKit/UIKit.h>
#import "NewsView.h"
@class NewsView;

@interface NewsBase : UIViewController

Expand Down
1 change: 0 additions & 1 deletion oschina/NewsView.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#import "MessageSystemView.h"
#import "NewsCell.h"
#import "NewsBase.h"
@class NewsBase;
#import "ASIProgressDelegate.h"
#import "MBProgressHUD.h"
#import "BlogUnit.h"
Expand Down
6 changes: 1 addition & 5 deletions oschina/OSAppDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,13 @@
#import "DataSingleton.h"
#import "CheckNetwork.h"
#import "PostBase.h"
@class PostBase;
#import "ProfileBase.h"
@class ProfileBase;
#import "NewsBase.h"
@class NewsBase;
#import "TweetBase2.h"
@class TweetBase2;
#import "SettingView.h"
@class SettingView;
#import "NdUncaughtExceptionHandler.h"

@class ProfileBase;
@interface OSAppDelegate : UIResponder <UIApplicationDelegate,UITabBarControllerDelegate>
{
int m_lastTabIndex;
Expand Down
1 change: 0 additions & 1 deletion oschina/PostBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
#import <UIKit/UIKit.h>
#import "PostPubView.h"
#import "PostsView.h"
@class PostsView;

@interface PostBase : UIViewController<UIActionSheetDelegate>

Expand Down
1 change: 0 additions & 1 deletion oschina/PostsView.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
#import "Post.h"
#import "PostCell.h"
#import "PostBase.h"
@class PostBase;
#import "SinglePost.h"
#import "MessageSystemView.h"
#import "ShareView.h"
Expand Down
3 changes: 0 additions & 3 deletions oschina/ProfileBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,8 @@
#import <UIKit/UIKit.h>
#import "MessageView.h"
#import "ActivesView.h"
@class ActivesView;
#import "PubMessage.h"
@class MessageView;
#import "OSAppDelegate.h"
@class OSAppDelegate;
#import "OSCNotice.h"

@interface ProfileBase : UIViewController<UIActionSheetDelegate>
Expand Down
1 change: 0 additions & 1 deletion oschina/PubTweet.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
#import <QuartzCore/QuartzCore.h>
#import "TwitterView.h"
#import "MyThread.h"
@class TwitterView;
#import "MBProgressHUD.h"
#import "TSEmojiView.h"

Expand Down
3 changes: 1 addition & 2 deletions oschina/ReplyMsgView.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
#import <UIKit/UIKit.h>
#import "Tool.h"
#import "MessageSystemView.h"
@class MessageSystemView;
#import "Comment.h"
@class Comment;
@class MessageSystemView;

@interface ReplyMsgView : UIViewController<UIActionSheetDelegate,UIWebViewDelegate,UITextViewDelegate>
{
Expand Down
3 changes: 0 additions & 3 deletions oschina/Tool.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,14 @@
#import "News.h"
#import "Post.h"
#import "Activity.h"
@class Activity;
#import "ActivesView.h"
#import "SinglePost.h"
#import "NewsDetail.h"
#import "MessageSystemView.h"
#import "ShareView.h"
#import "Message.h"
#import "Comment.h"
@class Comment;
#import "Tweet.h"
@class Tweet;
#import "TweetDetail.h"
#import "TweetBase2.h"
#import "OSCNotice.h"
Expand Down
1 change: 0 additions & 1 deletion oschina/TweetBase2.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
#import <UIKit/UIKit.h>
#import "TwitterView.h"
#import "PubTweet.h"
@class TwitterView;

@interface TweetBase2 : UIViewController<UIActionSheetDelegate>

Expand Down
1 change: 0 additions & 1 deletion oschina/TweetDetail.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

#import <UIKit/UIKit.h>
#import "Tweet.h"
@class Tweet;
#import "Tool.h"
#import "Notification_CommentCount.h"
#import "TweetImgDetail.h"
Expand Down
1 change: 0 additions & 1 deletion oschina/TwitterView.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#import "MessageSystemView.h"
#import "Tool.h"
#import "TweetBase2.h"
@class TweetBase2;
#import "UITap.h"
#import "EGOImageView.h"
#import "EGORefreshTableHeaderView.h"
Expand Down

0 comments on commit 729cf99

Please sign in to comment.