]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/jpeg/ExifLibrary.java
Version 10, May 2010
[GpsPrune.git] / tim / prune / jpeg / ExifLibrary.java
diff --git a/tim/prune/jpeg/ExifLibrary.java b/tim/prune/jpeg/ExifLibrary.java
new file mode 100644 (file)
index 0000000..8d00617
--- /dev/null
@@ -0,0 +1,15 @@
+package tim.prune.jpeg;
+
+import java.io.File;
+
+/**
+ * Interface satisfied by both internal and external Exif implementations
+ */
+public interface ExifLibrary
+{
+       /** Get the Jpeg data from the given file */
+       public JpegData getJpegData(File inFile);
+
+       /** Check that dependencies are resolved */
+       public boolean looksOK();
+}