Skip to content

Instantly share code, notes, and snippets.

@bartlomiejn
Last active March 26, 2017 17:46
Show Gist options
  • Select an option

  • Save bartlomiejn/6c79ccd36df0c96e5904ca786697d39b to your computer and use it in GitHub Desktop.

Select an option

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