Created
February 22, 2015 22:38
-
-
Save premedios/82d85b5ccb8dea6048d9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// | |
// ImportOperation.swift | |
// ETA | |
// | |
// Created by Pedro Remedios on 22/02/15. | |
// Copyright (c) 2015 Pedro Remedios. All rights reserved. | |
// | |
import UIKit | |
typealias ProgressCallBack = (progress:Double, records:Int) -> () | |
class ImportOperation: NSOperation { | |
init(database:ETADatabase) { | |
} | |
override func main() { | |
} | |
func importCSV(progress:ProgressCallback) { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment