You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-ios/SessionMessagingKit/Messages/Visible Message/VisibleMessage+Profile.swift

16 lines
312 B
Swift

public extension VisibleMessage {
@objc(SNProfile)
class Profile : NSObject, NSCoding {
public required init?(coder: NSCoder) {
fatalError("Not implemented.")
}
public func encode(with coder: NSCoder) {
fatalError("Not implemented.")
}
}
}