Created
December 15, 2015 13:17
-
-
Save eofster/1b4a1951a04e40221c24 to your computer and use it in GitHub Desktop.
GPS tracker presenter factory
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
protocol PresenterFactory { | |
func createTrackSummaryPresenterWithOutput(output: TrackSummaryPresenterOutput) -> TrackSummaryPresenter | |
} | |
class PresenterFactoryImpl {} | |
extension PresenterFactoryImpl: PresenterFactory { | |
func createTrackSummaryPresenterWithOutput(output: TrackSummaryPresenterOutput) -> TrackSummaryPresenter { | |
return TrackSummaryPresenter(output: output) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment