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

org.bytedeco.llvm.clang.CXIdxContainerInfo Maven / Gradle / Ivy

There is a newer version: 19.1.3-1.5.11
Show newest version
// Targeted by JavaCPP version 1.5.7: DO NOT EDIT THIS FILE

package org.bytedeco.llvm.clang;

import java.nio.*;
import org.bytedeco.javacpp.*;
import org.bytedeco.javacpp.annotation.*;

import static org.bytedeco.javacpp.presets.javacpp.*;
import org.bytedeco.llvm.LLVM.*;
import static org.bytedeco.llvm.global.LLVM.*;

import static org.bytedeco.llvm.global.clang.*;


@Properties(inherit = org.bytedeco.llvm.presets.clang.class)
public class CXIdxContainerInfo extends Pointer {
    static { Loader.load(); }
    /** Default native constructor. */
    public CXIdxContainerInfo() { super((Pointer)null); allocate(); }
    /** Native array allocator. Access with {@link Pointer#position(long)}. */
    public CXIdxContainerInfo(long size) { super((Pointer)null); allocateArray(size); }
    /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
    public CXIdxContainerInfo(Pointer p) { super(p); }
    private native void allocate();
    private native void allocateArray(long size);
    @Override public CXIdxContainerInfo position(long position) {
        return (CXIdxContainerInfo)super.position(position);
    }
    @Override public CXIdxContainerInfo getPointer(long i) {
        return new CXIdxContainerInfo((Pointer)this).offsetAddress(i);
    }

  public native @ByRef CXCursor cursor(); public native CXIdxContainerInfo cursor(CXCursor setter);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy