]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/data/PhotoStatus.java
Version 3, August 2007
[GpsPrune.git] / tim / prune / data / PhotoStatus.java
diff --git a/tim/prune/data/PhotoStatus.java b/tim/prune/data/PhotoStatus.java
new file mode 100644 (file)
index 0000000..831f36f
--- /dev/null
@@ -0,0 +1,11 @@
+package tim.prune.data;
+
+/**
+ * Interface to hold constants for photo status
+ */
+public interface PhotoStatus
+{
+       public static final byte NOT_CONNECTED = 0;
+       public static final byte TAGGED        = 1;
+       public static final byte CONNECTED     = 2;
+}