blob: 76ecabc5da33d106e3ccafd1b9fd683e4548faa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
/// Settings optionally supplied during communicator initialization.
public struct InitializationData {
/// The properties for the communicator.
public var properties: Properties?
/// The logger for the communicator.
public var logger: Logger?
public var classResolverPrefix: [String]?
public init() {}
}
|