Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sort includes CHIP_Framework_iOS #717

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/CHIP_Framework_iOS/CHIP/CHIP/CHIP.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@
* limitations under the License.
*/

#import <Foundation/Foundation.h>
#import "CHIPSetupPayload.h"
#import "CHIPQRCodeSetupPayloadParser.h"
#import "CHIPManualSetupPayloadParser.h"
// pull together CHIP headers
#import "CHIPError.h"
#import "CHIPManualSetupPayloadParser.h"
#import "CHIPQRCodeSetupPayloadParser.h"
#import "CHIPSetupPayload.h"

#import <Foundation/Foundation.h>
//! Project version number for CHIP.
FOUNDATION_EXPORT double CHIPVersionNumber;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// module header
#import "CHIPSetupPayload.h"

#import <Foundation/Foundation.h>
#import "CHIPSetupPayload.h"
#import "CHIPError.h"

NS_ASSUME_NONNULL_BEGIN

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#import <Foundation/Foundation.h>

// module header
#import "CHIPSetupPayload.h"
#import "CHIPError.h"

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#import <XCTest/XCTest.h>
// module headers
#import "CHIPManualSetupPayloadParser.h"
#import "CHIPQRCodeSetupPayloadParser.h"

// system dependencies
#import <XCTest/XCTest.h>

@interface CHIPSetupPayloadParserTests : XCTestCase

@end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
* limitations under the License.
*/

#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <AVCaptureMetadataOutputObjectsDelegate>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

// module header
#import "ViewController.h"

// local imports
#import <CHIP/CHIP.h>

// system imports
#import <AVFoundation/AVFoundation.h>

#define INDICATOR_DELAY 0.5 * NSEC_PER_SEC
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
* limitations under the License.
*/

#import <UIKit/UIKit.h>
#import "AppDelegate.h"

int main(int argc, char * argv[])
Expand Down