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

com.codeminders.ardrone.controllers.ControllerData Maven / Gradle / Ivy

The newest version!
package com.codeminders.ardrone.controllers;

public class ControllerData {
    private byte[]           buf;
    int                      actualBufferDataLength;
    
    public ControllerData(byte[] buf, int actualBufferDataLength) {
        super();
        this.buf = buf;
        this.actualBufferDataLength = actualBufferDataLength;
    }
    public byte[] getBuffer() {
        return buf;
    }
    public int getActualBufferDataLength() {
        return actualBufferDataLength;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy