-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
fanyu.xhy
committed
Oct 23, 2014
1 parent
dfb0787
commit 80871d0
Showing
14 changed files
with
264 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// exRunnerManager.m | ||
// MobileWebPerformanceTest | ||
// | ||
// Created by fanyu on 14/10/23. | ||
// Copyright (c) 2014年 fanyu. All rights reserved. | ||
// | ||
|
||
#import "exRunnerManager.h" | ||
|
||
BOOL _isWorking = NO; | ||
|
||
@implementation exRunnerManager | ||
|
||
+(BOOL)getWorkingStatus{ | ||
return _isWorking; | ||
} | ||
|
||
+(void)setWorkingStatus:(BOOL)working{ | ||
_isWorking = working; | ||
} | ||
@end |
Oops, something went wrong.