Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wangkuiyi authored and light-tech committed Dec 23, 2022
1 parent fbd6b4d commit 83ade6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Combining these two articles is the basis for our Sample app.

A typical approach to allow C++ in Swift-based iOS app will be using
* _Swift_ : Anything iOS-related (UI, file system access, Internet, ...)
* _Objective-C_ : Simple classes (like [`LLVMBridge`](Sample/Sample/LLVMBridge.h) in our Sample app) to expose service written in C++.
* _Objective-C_ : Simple classes (like [`LLVMBridge`](Sample/LLVMBridge.h) in our Sample app) to expose service written in C++.
The main role is to convert data types between C++ and Swift.
For example: Swift's `Data` to Objective-C's `NSData` to C++'s buffer `char*` (and length).
* _C++_ : Actual implementation of processing functionality.
Expand Down

0 comments on commit 83ade6c

Please sign in to comment.