Skip to content

Instantly share code, notes, and snippets.

@bartlomiejn
Last active March 26, 2017 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bartlomiejn/6c79ccd36df0c96e5904ca786697d39b to your computer and use it in GitHub Desktop.
Save bartlomiejn/6c79ccd36df0c96e5904ca786697d39b to your computer and use it in GitHub Desktop.
Example usage of CppClassWrapper in Swift for swifty-explorations.ghost.io
let cppClass = CppClassWrapper(storedValue: „Some value”)!
print(cppClass.storedValue) // Some value
cppClass.storedValue = „New value”
print(cppClass.storedValue) // New value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment