Skip to content

Instantly share code, notes, and snippets.

@iamcrypticcoder
Created March 29, 2018 09:53
Show Gist options
  • Save iamcrypticcoder/57abc63dc8f8b5e9f13603ca100d2ca5 to your computer and use it in GitHub Desktop.
Save iamcrypticcoder/57abc63dc8f8b5e9f13603ca100d2ca5 to your computer and use it in GitHub Desktop.
class WinFactory : AbstractGUIFactory {
func createButton() -> Button {
return WinButton()
}
func createWindow() -> Window {
return WinWindow()
}
}
class OSXFactory : AbstractGUIFactory {
func createButton() -> Button {
return OSXButton()
}
func createWindow() -> Window {
return OSXWindow()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment