10 lines
173 B
Swift
10 lines
173 B
Swift
import Foundation
|
|
|
|
public final class CustomPolyline: NSObject, NSCoding {
|
|
public init?(coder aDecoder: NSCoder) {
|
|
}
|
|
|
|
public func encode(with aCoder: NSCoder) {
|
|
}
|
|
}
|