All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lkqm.hcnet.options.BaseOptions Maven / Gradle / Ivy

The newest version!
package com.github.lkqm.hcnet.options;

import com.github.lkqm.hcnet.HCNetSDK;
import com.github.lkqm.hcnet.HikDeviceTemplate;
import com.github.lkqm.hcnet.HikResult;

public abstract class BaseOptions {

    protected final HikDeviceTemplate deviceTemplate;

    public BaseOptions(HikDeviceTemplate deviceTemplate) {
        this.deviceTemplate = deviceTemplate;
    }

    protected HCNetSDK getHcnetsdk() {
        return deviceTemplate.getHcnetsdk();
    }

    protected  HikResult lastError() {
        return deviceTemplate.lastError();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy