]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/data/PhotoStatus.java
Version 3, August 2007
[GpsPrune.git] / tim / prune / data / PhotoStatus.java
1 package tim.prune.data;
2
3 /**
4  * Interface to hold constants for photo status
5  */
6 public interface PhotoStatus
7 {
8         public static final byte NOT_CONNECTED = 0;
9         public static final byte TAGGED        = 1;
10         public static final byte CONNECTED     = 2;
11 }