1234567891011121314151617181920 |
- //
- // KMOCRManager.swift
- // PDF Master
- //
- // Created by lizhe on 2022/11/21.
- //
- import Cocoa
- class KMOCRManager {
-
- static let shared = KMOCRManager()
-
- private init() {}
-
- // Optional
- func reset() {
- // Reset all properties to default value
- }
- }
|