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

io.vproxy.pni.exec.ast.BitFieldInfo Maven / Gradle / Ivy

The newest version!
package io.vproxy.pni.exec.ast;

public class BitFieldInfo {
    public final String name;
    public final int offset;
    public final int bit;
    public final boolean bool;

    public BitFieldInfo(String name, int offset, int bit, boolean bool) {
        this.name = name;
        this.offset = offset;
        this.bit = bit;
        this.bool = bool;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy