Skip to content

Commit

Permalink
Integrates SQLite.swift for DB access, updates ELHASO. Refs #37.
Browse files Browse the repository at this point in the history
  • Loading branch information
gradha committed Jun 7, 2015
1 parent 1b3b8c9 commit d03b959
Show file tree
Hide file tree
Showing 7 changed files with 108 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
[submodule "external/EHReachability"]
path = external/EHReachability
url = git://github.com/gradha/EHReachability.git
[submodule "external/SQLite.swift"]
path = external/SQLite.swift
url = https://github.com/gradha/SQLite.swift.git
94 changes: 94 additions & 0 deletions Record_my_position.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions external/SQLite.swift
Submodule SQLite.swift added at fde8c3
4 changes: 3 additions & 1 deletion src/Er recorder adhoc-Bridging-Header.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
//


#import "DB.h"
#import "DB.h"
#import <sqlite3.h>
#import "SQLite-Bridging.h"
4 changes: 3 additions & 1 deletion src/Record_my_position-Bridging-Header.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
// Use this file to import your target's public headers that you would like to expose to Swift.
//

#import "DB.h"
#import "DB.h"
#import <sqlite3.h>
#import "SQLite-Bridging.h"
4 changes: 3 additions & 1 deletion src/Record_my_position_appstore-Bridging-Header.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@
//


#import "DB.h"
#import "DB.h"
#import <sqlite3.h>
#import "SQLite-Bridging.h"

0 comments on commit d03b959

Please sign in to comment.