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

org.jruby.ext.ffi.jffi.PointerParameterStrategy Maven / Gradle / Ivy

There is a newer version: 0.8.14
Show newest version
package org.jruby.ext.ffi.jffi;

import com.kenai.jffi.ObjectParameterStrategy;
import com.kenai.jffi.ObjectParameterType;

/**
 *
 */
abstract public class PointerParameterStrategy extends ObjectParameterStrategy {

    PointerParameterStrategy(boolean isDirect) {
        super(isDirect);
    }

    PointerParameterStrategy(boolean isDirect, ObjectParameterType objectType) {
        super(isDirect, objectType);
    }

    PointerParameterStrategy(StrategyType type) {
        super(type);
    }

    PointerParameterStrategy(StrategyType type, ObjectParameterType objectType) {
        super(type, objectType);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy