/// /// HybridMeteringPointSpec.kt /// This file was generated by nitrogen. DO NOT MODIFY THIS FILE. /// https://github.com/mrousavy/nitro /// Copyright © Marc Rousavy @ Margelo /// package com.margelo.nitro.camera import androidx.annotation.Keep import com.facebook.jni.HybridData import com.facebook.proguard.annotations.DoNotStrip import com.margelo.nitro.core.HybridObject /** * A Kotlin class representing the MeteringPoint HybridObject. * Implement this abstract class to create Kotlin-based instances of MeteringPoint. */ @DoNotStrip @Keep @Suppress( "KotlinJniMissingFunction", "unused", "RedundantSuppression", "RedundantUnitReturnType", "SimpleRedundantLet", "LocalVariableName", "PropertyName", "PrivatePropertyName", "FunctionName" ) abstract class HybridMeteringPointSpec: HybridObject() { // Properties @get:DoNotStrip @get:Keep abstract val relativeX: Double @get:DoNotStrip @get:Keep abstract val relativeY: Double @get:DoNotStrip @get:Keep abstract val relativeSize: Double? @get:DoNotStrip @get:Keep abstract val normalizedX: Double @get:DoNotStrip @get:Keep abstract val normalizedY: Double @get:DoNotStrip @get:Keep abstract val normalizedSize: Double // Methods // Default implementation of `HybridObject.toString()` override fun toString(): String { return "[HybridObject MeteringPoint]" } // C++ backing class @DoNotStrip @Keep protected open class CxxPart(javaPart: HybridMeteringPointSpec): HybridObject.CxxPart(javaPart) { // C++ JHybridMeteringPointSpec::CxxPart::initHybrid(...) external override fun initHybrid(): HybridData } override fun createCxxPart(): CxxPart { return CxxPart(this) } companion object { protected const val TAG = "HybridMeteringPointSpec" } }