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

com.googlecode.javacpp.annotation.ByPtr Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package com.googlecode.javacpp.annotation;

import com.googlecode.javacpp.Generator;
import com.googlecode.javacpp.Pointer;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Indicates that an argument should get passed or returned by pointer. By default,
 * all {@link Pointer} and array arguments get passed by pointer. Since it is
 * not used for any other purposes at the moment, this annotation has no effect.
 *
 * @see Generator
 *
 * @author Samuel Audet
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.PARAMETER})
public @interface ByPtr { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy