///
/// HybridZoomGestureControllerSpec.swift
/// This file was generated by nitrogen. DO NOT MODIFY THIS FILE.
/// https://github.com/mrousavy/nitro
/// Copyright © Marc Rousavy @ Margelo
///

import NitroModules

/// See ``HybridZoomGestureControllerSpec``
public protocol HybridZoomGestureControllerSpec_protocol: HybridObject, HybridGestureControllerSpec_protocol {
  // Properties
  

  // Methods
  
}

public extension HybridZoomGestureControllerSpec_protocol {
  /// Default implementation of ``HybridObject.toString``
  func toString() -> String {
    return "[HybridObject ZoomGestureController]"
  }
}

/// See ``HybridZoomGestureControllerSpec``
open class HybridZoomGestureControllerSpec_base: HybridGestureControllerSpec_base {
  private weak var cxxWrapper: HybridZoomGestureControllerSpec_cxx? = nil
  public override init() { super.init() }
  public override func getCxxWrapper() -> HybridZoomGestureControllerSpec_cxx {
  #if DEBUG
    guard self is any HybridZoomGestureControllerSpec else {
      fatalError("`self` is not a `HybridZoomGestureControllerSpec`! Did you accidentally inherit from `HybridZoomGestureControllerSpec_base` instead of `HybridZoomGestureControllerSpec`?")
    }
  #endif
    if let cxxWrapper = self.cxxWrapper {
      return cxxWrapper
    } else {
      let cxxWrapper = HybridZoomGestureControllerSpec_cxx(self as! any HybridZoomGestureControllerSpec)
      self.cxxWrapper = cxxWrapper
      return cxxWrapper
    }
  }
}

/**
 * A Swift base-protocol representing the ZoomGestureController HybridObject.
 * Implement this protocol to create Swift-based instances of ZoomGestureController.
 * ```swift
 * class HybridZoomGestureController : HybridZoomGestureControllerSpec {
 *   // ...
 * }
 * ```
 */
public typealias HybridZoomGestureControllerSpec = HybridZoomGestureControllerSpec_protocol & HybridZoomGestureControllerSpec_base
