001 /*----------------------------------------------------------------------------*/ 002 /* Copyright (c) FIRST 2008-2012. All Rights Reserved. */ 003 /* Open Source Software - may be modified and shared by FRC teams. The code */ 004 /* must be accompanied by the FIRST BSD license file in the root directory of */ 005 /* the project. */ 006 /*----------------------------------------------------------------------------*/ 007 008 package edu.wpi.first.wpilibj.image; 009 010 import com.sun.cldc.jna.Structure; 011 012 /** 013 * This is a dummy class which needs to be filled in. 014 * @author dtjones 015 */ 016 public class RegionOfInterest extends Structure{ 017 018 public void read() { 019 } 020 021 public void write() { 022 } 023 024 public int size() { 025 return 0; 026 } 027 028 }