darwinMain.com.arkivanov.parcelize.darwin.Parcelable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime Show documentation
Show all versions of runtime Show documentation
Parcelize Gradle plugin for Darwin targets
The newest version!
package com.arkivanov.parcelize.darwin
import platform.Foundation.NSSecureCodingProtocol
/**
* Interface for serializable classes. The serialization is performed via [NSSecureCodingProtocol].
*/
interface Parcelable {
/**
* Returns an instance of [NSSecureCodingProtocol] responsible for serialization and deserialization.
*/
fun coding(): NSSecureCodingProtocol = NotImplementedCoding()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy