19 lines
472 B
Swift
19 lines
472 B
Swift
//
|
|
// Copyright 2019 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
|
|
@objc
|
|
public class SSKProtos: NSObject {
|
|
|
|
private override init() {}
|
|
|
|
@objc
|
|
public class var currentProtocolVersion: Int {
|
|
// Our proto wrappers don't handle enum aliases, so we have one non-generated
|
|
// wrapper for the "current" protocol version.
|
|
return SignalServiceProtos_DataMessage.ProtocolVersion.current.rawValue
|
|
}
|
|
}
|