├── .gitignore ├── LaunchPoint.swift ├── README.md ├── repo └── MyObjcPod │ └── UsefulClass.h └── tmp ├── module.modulemap └── vfs-overlay.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/manually-expose-objective-c-API-to-swift-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LaunchPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/manually-expose-objective-c-API-to-swift-example/HEAD/LaunchPoint.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/manually-expose-objective-c-API-to-swift-example/HEAD/README.md -------------------------------------------------------------------------------- /repo/MyObjcPod/UsefulClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/manually-expose-objective-c-API-to-swift-example/HEAD/repo/MyObjcPod/UsefulClass.h -------------------------------------------------------------------------------- /tmp/module.modulemap: -------------------------------------------------------------------------------- 1 | module MyObjcPod { 2 | header "UsefulClass.h" 3 | export * 4 | } 5 | -------------------------------------------------------------------------------- /tmp/vfs-overlay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftSIQI/manually-expose-objective-c-API-to-swift-example/HEAD/tmp/vfs-overlay.yaml --------------------------------------------------------------------------------