summaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/AutoCloseable.java
blob: 6c84ae4827807de4861cbc4b1b56305f99d8a850 (plain)
1
2
3
4
5
6
package com.jogamp.opencl;

// early import of JDK7's ARM interface for JDK6 backwards compatibility.
public interface AutoCloseable {
    void close() throws Exception;
}