18 lines
758 B
Swift
18 lines
758 B
Swift
// (c) 2011 and onwards The OpenVanilla Project (MIT License).
|
|
// All possible vChewing-specific modifications are of:
|
|
// (c) 2021 and onwards The vChewing Project (MIT-NTL License).
|
|
// ====================
|
|
// This code is released under the MIT license (SPDX-License-Identifier: MIT)
|
|
// ... with NTL restriction stating that:
|
|
// No trademark license is granted to use the trade names, trademarks, service
|
|
// marks, or product names of Contributor, except as required to fulfill notice
|
|
// requirements defined in MIT License.
|
|
|
|
import AppKit
|
|
|
|
@objcMembers public class Broadcaster: NSObject {
|
|
public static var shared = Broadcaster()
|
|
public dynamic var eventForReloadingPhraseEditor = UUID()
|
|
public dynamic var eventForReloadingRevLookupData = UUID()
|
|
}
|